summaryrefslogtreecommitdiffstats
path: root/kded
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:33:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:33:40 -0600
commit4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch)
tree2891b54cd6ec39db133da0110028ec93fc006751 /kded
parent8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff)
downloadtdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz
tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip
Rename additional global TQt functions
Diffstat (limited to 'kded')
-rw-r--r--kded/kbuildsycoca.cpp2
-rw-r--r--kded/kde-menu.cpp4
-rw-r--r--kded/kded.cpp2
-rw-r--r--kded/kmimelist.cpp2
-rw-r--r--kded/test/test.cpp6
5 files changed, 8 insertions, 8 deletions
diff --git a/kded/kbuildsycoca.cpp b/kded/kbuildsycoca.cpp
index 19f7a3671..29085f2d3 100644
--- a/kded/kbuildsycoca.cpp
+++ b/kded/kbuildsycoca.cpp
@@ -870,7 +870,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
g_ctimeDict = 0;
if (incremental)
{
- qWarning("Reusing existing ksycoca");
+ tqWarning("Reusing existing ksycoca");
KSycoca *oldSycoca = KSycoca::self();
KSycocaFactoryList *factories = new KSycocaFactoryList;
g_allEntries = new KSycocaEntryListList;
diff --git a/kded/kde-menu.cpp b/kded/kde-menu.cpp
index b401953f3..3afa84318 100644
--- a/kded/kde-menu.cpp
+++ b/kded/kde-menu.cpp
@@ -60,7 +60,7 @@ static void result(const TQString &txt)
static void error(int exitCode, const TQString &txt)
{
- qWarning("kde-menu: %s", txt.local8Bit().data());
+ tqWarning("kde-menu: %s", txt.local8Bit().data());
exit(exitCode);
}
@@ -150,7 +150,7 @@ int main(int argc, char **argv)
TQCString _launcher = KApplication::launcher();
if (!DCOPRef(_launcher, _launcher).call("tdeinit_exec_wait", command, args).isValid())
{
- qWarning("Can't talk to klauncher!");
+ tqWarning("Can't talk to klauncher!");
command = KGlobal::dirs()->findExe(command);
command += " " + args.join(" ");
system(command.local8Bit());
diff --git a/kded/kded.cpp b/kded/kded.cpp
index 9114c57a2..cc7c565fc 100644
--- a/kded/kded.cpp
+++ b/kded/kded.cpp
@@ -441,7 +441,7 @@ void Kded::crashHandler(int)
DCOPClient::emergencyClose();
if (_self) // Don't restart if we were closing down
system("kded");
-qWarning("Last DCOP call before KDED crash was from application '%s'\n"
+tqWarning("Last DCOP call before KDED crash was from application '%s'\n"
"to object '%s', function '%s'.",
DCOPClient::postMortemSender(),
DCOPClient::postMortemObject(),
diff --git a/kded/kmimelist.cpp b/kded/kmimelist.cpp
index a08484bc6..fff626cac 100644
--- a/kded/kmimelist.cpp
+++ b/kded/kmimelist.cpp
@@ -18,7 +18,7 @@ int main(int argc, char *argv[])
KMimeType::List mtl = KMimeType::allMimeTypes( );
assert( mtl.count() );
- qDebug( "Found %d mime types.", mtl.count() );
+ tqDebug( "Found %d mime types.", mtl.count() );
TQValueListIterator<KMimeType::Ptr> it(mtl.begin());
KServiceTypeProfile::OfferList ol;
diff --git a/kded/test/test.cpp b/kded/test/test.cpp
index 13b7c2944..e99eb1421 100644
--- a/kded/test/test.cpp
+++ b/kded/test/test.cpp
@@ -4,9 +4,9 @@ class TestObject : public KShared
{
public:
TestObject(const TQCString &_app) : app(_app)
- { qWarning("Creating TestObject belonging to '%s'", app.data()); }
+ { tqWarning("Creating TestObject belonging to '%s'", app.data()); }
~TestObject()
- { qWarning("Destructing TestObject belonging to '%s'", app.data()); }
+ { tqWarning("Destructing TestObject belonging to '%s'", app.data()); }
protected:
TQCString app;
};
@@ -24,7 +24,7 @@ TQString TestModule::world()
void TestModule::idle()
{
- qWarning("TestModule is idle.");
+ tqWarning("TestModule is idle.");
}
void TestModule::registerMe(const TQCString &app)