summaryrefslogtreecommitdiffstats
path: root/kdeprint/kprinter/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeprint/kprinter/main.cpp')
-rw-r--r--kdeprint/kprinter/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdeprint/kprinter/main.cpp b/kdeprint/kprinter/main.cpp
index 1d88ace83..dd49103c5 100644
--- a/kdeprint/kprinter/main.cpp
+++ b/kdeprint/kprinter/main.cpp
@@ -19,7 +19,7 @@
#include "printwrapper.h"
-#include <qtimer.h>
+#include <tqtimer.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include <klocale.h>
@@ -49,7 +49,7 @@ extern "C" int KDE_EXPORT kdemain(int argc, char *argv[])
KApplication app;
PrintWrapper *wrap = new PrintWrapper;
app.setMainWidget(wrap);
- QTimer::singleShot(10,wrap,SLOT(slotPrint()));
+ TQTimer::singleShot(10,wrap,TQT_SLOT(slotPrint()));
int result = app.exec();
delete wrap;