diff options
Diffstat (limited to 'src/tellico_map.h')
-rw-r--r-- | src/tellico_map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tellico_map.h b/src/tellico_map.h index 75ceb32..8f41b9d 100644 --- a/src/tellico_map.h +++ b/src/tellico_map.h @@ -14,7 +14,7 @@ #ifndef TELLICO_MAP_H #define TELLICO_MAP_H -#include <qmap.h> +#include <tqmap.h> /** * This file contains some template functions for maps @@ -27,8 +27,8 @@ namespace Tellico { * Reverse a map's keys and values */ template<class M> -QMap<typename M::T, typename M::Key> flipMap(const M& map_) { - QMap<typename M::T, typename M::Key> map; +TQMap<typename M::T, typename M::Key> flipMap(const M& map_) { + TQMap<typename M::T, typename M::Key> map; typename M::ConstIterator it = map_.begin(), end = map_.end(); for( ; it != end; ++it) { map.insert(it.data(), it.key()); |