summaryrefslogtreecommitdiffstats
path: root/kweather/weatherlib.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:59:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:59:40 -0600
commit59a076e9336f1eebda8650437e6bc61077be1516 (patch)
treea2e4658f80b77270d84b50bd116f84eaea7efab0 /kweather/weatherlib.cpp
parent3ee504ecba6caf3c2609a8648fe3659f2b541544 (diff)
downloadtdetoys-59a076e9336f1eebda8650437e6bc61077be1516.tar.gz
tdetoys-59a076e9336f1eebda8650437e6bc61077be1516.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kweather/weatherlib.cpp')
-rw-r--r--kweather/weatherlib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kweather/weatherlib.cpp b/kweather/weatherlib.cpp
index ae40734..59a10dc 100644
--- a/kweather/weatherlib.cpp
+++ b/kweather/weatherlib.cpp
@@ -144,7 +144,7 @@ void WeatherLib::slotCopyDone(KIO::Job* job)
// File error
kdDebug( 12006 ) << "File empty error..." << endl;
KPassivePopup::message( i18n("KWeather Error!"),
- i18n("The temp file %1 was empty.").tqarg(d->target->name()), 0L,"error" );
+ i18n("The temp file %1 was empty.").arg(d->target->name()), 0L,"error" );
d->updated = false;
}
}
@@ -153,7 +153,7 @@ void WeatherLib::slotCopyDone(KIO::Job* job)
// File error
kdDebug( 12006 ) << "File read error..." << endl;
KPassivePopup::message( i18n("KWeather Error!"),
- i18n("Could not read the temp file %1.").tqarg(d->target->name()), 0L,"error" );
+ i18n("Could not read the temp file %1.").arg(d->target->name()), 0L,"error" );
d->updated = false;
}
delete d->target;