From 82719e3d3766b49e507b4d0811133884f27c898e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:59:40 -0600 Subject: Remove additional unneeded tq method conversions (cherry picked from commit 59a076e9336f1eebda8650437e6bc61077be1516) --- kweather/dockwidget.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kweather/dockwidget.cpp') diff --git a/kweather/dockwidget.cpp b/kweather/dockwidget.cpp index bfcc097..f5205d4 100644 --- a/kweather/dockwidget.cpp +++ b/kweather/dockwidget.cpp @@ -112,19 +112,19 @@ void dockwidget::showWeather() "" + i18n( "Rel. Humidity:" ) + "%4" "" + i18n( "Wind Speed:" ) + "%5") - .tqarg(temp).tqarg(dewPoint).tqarg(pressure).tqarg(relHumidity).tqarg(wind); + .arg(temp).arg(dewPoint).arg(pressure).arg(relHumidity).arg(wind); if ( !heatIndex.isEmpty() ) - tip += TQString("" + i18n( "Heat Index:" ) + "%1").tqarg(heatIndex); + tip += TQString("" + i18n( "Heat Index:" ) + "%1").arg(heatIndex); else if ( !windChill.isEmpty() ) - tip += TQString("" + i18n( "Wind Chill:" ) + "%1").tqarg(windChill); + tip += TQString("" + i18n( "Wind Chill:" ) + "%1").arg(windChill); else tip += "  "; tip += ""; tip += TQString("" + i18n( "Sunrise:" ) + "%1" + "" + i18n( "Sunset:" ) + "%2") - .tqarg(sunRiseTime).tqarg(sunSetTime); + .arg(sunRiseTime).arg(sunSetTime); tip += ""; -- cgit v1.2.1