diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:19:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:19:48 -0600 |
commit | aa85254cd16cb870b8d1649ef1dbad09bd8491e8 (patch) | |
tree | 850c18efae9bd6bc03f83c16fe4caf8670b67f43 /kmymoney2/main.cpp | |
parent | 4aafeadd9f7ae0e603589579d467588c7421a283 (diff) | |
download | kmymoney-aa85254cd16cb870b8d1649ef1dbad09bd8491e8.tar.gz kmymoney-aa85254cd16cb870b8d1649ef1dbad09bd8491e8.zip |
Rename additional global TQt functions
Diffstat (limited to 'kmymoney2/main.cpp')
-rw-r--r-- | kmymoney2/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/main.cpp b/kmymoney2/main.cpp index 63f8ce4..01f807b 100644 --- a/kmymoney2/main.cpp +++ b/kmymoney2/main.cpp @@ -155,7 +155,7 @@ int main(int argc, char *argv[]) TQCString language = args->getOption("lang"); if(!language.isEmpty()) { if(!KGlobal::locale()->setLanguage(language)) { - qWarning("Unable to select language '%s'. This has one of two reasons:\n\ta) the standard KDE message catalogue is not installed\n\tb) the KMyMoney message catalogue is not installed", language.data()); + tqWarning("Unable to select language '%s'. This has one of two reasons:\n\ta) the standard KDE message catalogue is not installed\n\tb) the KMyMoney message catalogue is not installed", language.data()); } } @@ -212,7 +212,7 @@ int main(int argc, char *argv[]) arg << url.path(); arg << kapp->startupId(); if (!client->send(primary, "kmymoney2app", "webConnect(TQString,TQCString)",data)) - qDebug("Unable to launch WebConnect via DCOP."); + tqDebug("Unable to launch WebConnect via DCOP."); // Before we delete the application, we make sure that we destroy all // widgets by running the event loop for some time to catch all those @@ -233,7 +233,7 @@ int main(int argc, char *argv[]) } } } else { - qDebug("DCOP registration failed. Some functions are not available."); + tqDebug("DCOP registration failed. Some functions are not available."); } kmymoney2->show(); @@ -300,7 +300,7 @@ void timestamp(char *txt) { if(timersOn) { - qDebug("Time(%s): %d", txt, timer.elapsed()); + tqDebug("Time(%s): %d", txt, timer.elapsed()); } } @@ -308,7 +308,7 @@ void timetrace(const char *txt) { if(timersOn) { - qDebug("Timer(%s): %d elapsed", txt, timer.elapsed()); + tqDebug("Timer(%s): %d elapsed", txt, timer.elapsed()); timer.restart(); } } |