summaryrefslogtreecommitdiffstats
path: root/ksplashml/wndmain.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksplashml/wndmain.h')
-rw-r--r--ksplashml/wndmain.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/ksplashml/wndmain.h b/ksplashml/wndmain.h
index 563598c64..a5ad616b2 100644
--- a/ksplashml/wndmain.h
+++ b/ksplashml/wndmain.h
@@ -38,7 +38,7 @@ class TDEConfig;
class KSplash: public TQWidget, virtual public KSplashIface
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -56,17 +56,7 @@ public:
ASYNC startupComplete();
ASYNC show();
ASYNC hide();
-
- // [FIXME] How can I more easily let Qt know about these slots? moc-tqt perhaps?
- // More importantly, how was this code even running under Qt3?
- // Was it somehow running the TQWidget::close() slot instead of the KSplash::close() non-slot method?
- // Either way it looks like accidental/undefined behaviour to me...
-#ifndef Q_MOC_RUN
ASYNC close();
-#else // Q_MOC_RUN
-public slots:
- void close();
-#endif // Q_MOC_RUN
signals:
void stepsChanged(int);