summaryrefslogtreecommitdiffstats
path: root/kandy/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kandy/src/main.cpp')
-rw-r--r--kandy/src/main.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kandy/src/main.cpp b/kandy/src/main.cpp
index 9343c1ece..982a1a7f2 100644
--- a/kandy/src/main.cpp
+++ b/kandy/src/main.cpp
@@ -22,7 +22,7 @@
without including the source code for Qt in the source distribution.
*/
-#include <qfile.h>
+#include <tqfile.h>
#include <kapplication.h>
#include <dcopclient.h>
@@ -128,25 +128,25 @@ int main(int argc, char **argv)
}
if (args->count() == 1) {
- k->load(QFile::decodeName(args->arg(0)));
+ k->load(TQFile::decodeName(args->arg(0)));
} else if (args->count() > 1) {
args->usage();
}
args->clear();
- QObject::connect(k,SIGNAL(showMobileWin()),m,SLOT(show()));
- QObject::connect(m,SIGNAL(showTerminalWin()),k,SLOT(show()));
- QObject::connect(m,SIGNAL(showPreferencesWin()),
- k,SLOT(optionsPreferences()));
+ TQObject::connect(k,TQT_SIGNAL(showMobileWin()),m,TQT_SLOT(show()));
+ TQObject::connect(m,TQT_SIGNAL(showTerminalWin()),k,TQT_SLOT(show()));
+ TQObject::connect(m,TQT_SIGNAL(showPreferencesWin()),
+ k,TQT_SLOT(optionsPreferences()));
- QObject::connect( m->view(), SIGNAL( connectModem() ), k,
- SLOT( modemConnect() ) );
- QObject::connect( m->view(), SIGNAL( disconnectModem() ), k,
- SLOT( modemDisconnect() ) );
+ TQObject::connect( m->view(), TQT_SIGNAL( connectModem() ), k,
+ TQT_SLOT( modemConnect() ) );
+ TQObject::connect( m->view(), TQT_SIGNAL( disconnectModem() ), k,
+ TQT_SLOT( modemDisconnect() ) );
- QObject::connect( modem, SIGNAL( errorMessage( const QString & ) ),
- k, SLOT( showErrorMessage( const QString & ) ) );
+ TQObject::connect( modem, TQT_SIGNAL( errorMessage( const TQString & ) ),
+ k, TQT_SLOT( showErrorMessage( const TQString & ) ) );
initModem( modem );