summaryrefslogtreecommitdiffstats
path: root/kstart
diff options
context:
space:
mode:
Diffstat (limited to 'kstart')
-rw-r--r--kstart/Makefile.am2
-rw-r--r--kstart/kstart.cpp4
-rw-r--r--kstart/kstart.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/kstart/Makefile.am b/kstart/Makefile.am
index c182fb28c..9e261bae9 100644
--- a/kstart/Makefile.am
+++ b/kstart/Makefile.am
@@ -1,6 +1,6 @@
####### Fiddle here
-AM_CPPFLAGS = -DTQT_NO_CAST_ASCII -DTQT_NO_COMPAT
+AM_CPPFLAGS = -DTQT_NO_CAST_ASCII
INCLUDES = $(all_includes)
diff --git a/kstart/kstart.cpp b/kstart/kstart.cpp
index bcbc6d846..bcf915b07 100644
--- a/kstart/kstart.cpp
+++ b/kstart/kstart.cpp
@@ -55,7 +55,7 @@ KStart::KStart()
sendRule();
else {
// connect to window add to get the NEW windows
- connect(twinmodule, TQT_SIGNAL(windowAdded(WId)), TQT_SLOT(windowAdded(WId)));
+ connect(twinmodule, TQ_SIGNAL(windowAdded(WId)), TQ_SLOT(windowAdded(WId)));
if (windowtitle != 0)
twinmodule->doNotManage( windowtitle );
}
@@ -76,7 +76,7 @@ KStart::KStart()
else
TDEStartupInfo::sendFinish( id ); // failed to start
- TQTimer::singleShot( useRule ? 0 : 120 * 1000, kapp, TQT_SLOT( quit()));
+ TQTimer::singleShot( useRule ? 0 : 120 * 1000, kapp, TQ_SLOT( quit()));
}
void KStart::sendRule() {
diff --git a/kstart/kstart.h b/kstart/kstart.h
index c35d460d3..adfaf53c6 100644
--- a/kstart/kstart.h
+++ b/kstart/kstart.h
@@ -16,7 +16,7 @@
class KWinModule;
class KStart: public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
KStart();