diff options
Diffstat (limited to 'kgeography/src/map.cpp')
-rw-r--r-- | kgeography/src/map.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kgeography/src/map.cpp b/kgeography/src/map.cpp index 57d79e9b..0ab2b85b 100644 --- a/kgeography/src/map.cpp +++ b/kgeography/src/map.cpp @@ -39,8 +39,8 @@ KGmap::~KGmap() bool KGmap::addDivision(division *c) { bool b; - if (p_nameMap.tqfind(c -> getName()) == p_nameMap.end() && - p_colorMap.tqfind(c -> getRGB()) == p_colorMap.end()) + if (p_nameMap.find(c -> getName()) == p_nameMap.end() && + p_colorMap.find(c -> getRGB()) == p_colorMap.end()) { p_colorMap.insert(c -> getRGB(), c); p_nameMap.insert(c -> getName(), c); @@ -129,7 +129,7 @@ TQString KGmap::getWhatIs(TQRgb c, bool all) const { // this is only asked from mapasker.cpp hence the true in canAsk TQMap<TQRgb, division*>::const_iterator it; - it = p_colorMap.tqfind(c); + it = p_colorMap.find(c); if (it == p_colorMap.end()) return "nothing"; else { |