summaryrefslogtreecommitdiffstats
path: root/kradio3/src/kradioapp.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:17 -0600
commitd9f7baa97dec2be4dd11726395eb704c837ce788 (patch)
treee94d72ba287986b45ad30d96dfab823dac60791d /kradio3/src/kradioapp.cpp
parent8d4453deaa5f97e1bbe76ea45fdcac6121da8c9d (diff)
downloadtderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.tar.gz
tderadio-d9f7baa97dec2be4dd11726395eb704c837ce788.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kradio3/src/kradioapp.cpp')
-rw-r--r--kradio3/src/kradioapp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kradio3/src/kradioapp.cpp b/kradio3/src/kradioapp.cpp
index 2842522..b5bc509 100644
--- a/kradio3/src/kradioapp.cpp
+++ b/kradio3/src/kradioapp.cpp
@@ -104,7 +104,7 @@ PluginLibraryInfo::PluginLibraryInfo (const TQString &lib_name)
} else {
KMessageBox::error(NULL,
i18n("Library %1: Plugin Entry Point is missing\n")
- .tqarg(lib_name),
+ .arg(lib_name),
i18n("Plugin Library Load Error"));
library->unload();
info_func = NULL;
@@ -114,8 +114,8 @@ PluginLibraryInfo::PluginLibraryInfo (const TQString &lib_name)
} else {
KMessageBox::error(NULL,
i18n("Library %1: \n%2")
- .tqarg(lib_name)
- .tqarg(KLibLoader::self()->lastErrorMessage()),
+ .arg(lib_name)
+ .arg(KLibLoader::self()->lastErrorMessage()),
i18n("Plugin Library Load Error"));
}
}
@@ -269,7 +269,7 @@ KLibrary *KRadioApp::LoadLibrary (const TQString &library)
kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
<< " "
<< i18n("Error: Loading Library %1 failed: %2")
- .tqarg(library).tqarg(KLibLoader::self()->lastErrorMessage())
+ .arg(library).arg(KLibLoader::self()->lastErrorMessage())
<< endl;
}
@@ -319,13 +319,13 @@ PluginBase *KRadioApp::CreatePlugin (PluginManager *manager, const TQString &cla
if (!retval) {
kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
<< " "
- << i18n("Error: Creation of instance \"%1\" of class %2 falied.").tqarg(object_name).tqarg(class_name)
+ << i18n("Error: Creation of instance \"%1\" of class %2 falied.").arg(object_name).arg(class_name)
<< endl;
}
} else {
kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
<< " "
- << i18n("Error: Cannot create instance \"%1\" of unknown class %2.").tqarg(object_name).tqarg(class_name)
+ << i18n("Error: Cannot create instance \"%1\" of unknown class %2.").arg(object_name).arg(class_name)
<< endl;
}