summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/gui-error-log
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:39:17 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:39:17 -0600
commitd9f7baa97dec2be4dd11726395eb704c837ce788 (patch)
treee94d72ba287986b45ad30d96dfab823dac60791d /kradio3/plugins/gui-error-log
parent8d4453deaa5f97e1bbe76ea45fdcac6121da8c9d (diff)
downloadtderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.tar.gz
tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kradio3/plugins/gui-error-log')
-rw-r--r--kradio3/plugins/gui-error-log/errorlog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kradio3/plugins/gui-error-log/errorlog.cpp b/kradio3/plugins/gui-error-log/errorlog.cpp
index e593192..664538b 100644
--- a/kradio3/plugins/gui-error-log/errorlog.cpp
+++ b/kradio3/plugins/gui-error-log/errorlog.cpp
@@ -162,7 +162,7 @@ void ErrorLog::showOnOrgDesktop()
void ErrorLog::hide()
{
- logDebug(TQString("%1, ErrorLog::hide: all: %2, desktop: %3, visible:%4, anywherevisible:%5, cachevalid: %6").tqarg(name()).tqarg(m_saveSticky).tqarg(m_saveDesktop).tqarg(isReallyVisible()).tqarg(isAnywhereVisible()).tqarg(m_geoCacheValid));
+ logDebug(TQString("%1, ErrorLog::hide: all: %2, desktop: %3, visible:%4, anywherevisible:%5, cachevalid: %6").arg(name()).arg(m_saveSticky).arg(m_saveDesktop).arg(isReallyVisible()).arg(isAnywhereVisible()).arg(m_geoCacheValid));
WidgetPluginBase::pHide();
KDialogBase::hide();
}
@@ -244,7 +244,7 @@ void ErrorLog::slotUser1()
if (outf->status() != IO_Ok) {
logError("ErrorLogger: " +
- i18n("error writing to tempfile %1").tqarg(tmpFile.name()));
+ i18n("error writing to tempfile %1").arg(tmpFile.name()));
return;
}
@@ -253,7 +253,7 @@ void ErrorLog::slotUser1()
if (!KIO::NetAccess::upload(tmpFile.name(), url, this)) {
logError("ErrorLogger: " +
- i18n("error uploading preset file %1").tqarg(url.url()));
+ i18n("error uploading preset file %1").arg(url.url()));
}
}
setIconListAllVisible(true);