diff options
Diffstat (limited to 'kworldwatch/cities.cpp')
-rw-r--r-- | kworldwatch/cities.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kworldwatch/cities.cpp b/kworldwatch/cities.cpp index a938ab6..6626beb 100644 --- a/kworldwatch/cities.cpp +++ b/kworldwatch/cities.cpp @@ -128,9 +128,9 @@ void CityList::readCityList(const TQString &fname) if (!c.isEmpty() && !n.isEmpty()) { double la, lo; - pos = c.tqfind("+", 1); + pos = c.find("+", 1); if (pos < 0) - pos = c.tqfind("-", 1); + pos = c.find("-", 1); if (pos > 0) { la = coordinate(c.left(pos)); |