diff options
Diffstat (limited to 'kmymoney2/kstartuplogo.h')
-rw-r--r-- | kmymoney2/kstartuplogo.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/kmymoney2/kstartuplogo.h b/kmymoney2/kstartuplogo.h index 2d3b305..0f340f9 100644 --- a/kmymoney2/kstartuplogo.h +++ b/kmymoney2/kstartuplogo.h @@ -20,8 +20,8 @@ // ---------------------------------------------------------------------------- // QT Includes -#include <qwidget.h> -#include <qguardedptr.h> +#include <tqwidget.h> +#include <tqguardedptr.h> // ---------------------------------------------------------------------------- // KDE Includes @@ -34,13 +34,14 @@ class KStartupSplash : public KSplashScreen { Q_OBJECT + TQ_OBJECT public: - KStartupSplash(const QPixmap &pixmap, WFlags f = 0); + KStartupSplash(const TQPixmap &pixmap, WFlags f = 0); ~KStartupSplash(); - void message( const QString &message, int alignment = AlignLeft, const QColor &color = black); + void message( const TQString &message, int tqalignment = AlignLeft, const TQColor &color = black); protected: - void drawContents(QPainter *p); + void drawContents(TQPainter *p); private: class Private; @@ -48,15 +49,16 @@ class KStartupSplash : public KSplashScreen }; // Simple class that just shows a picture -class KStartupLogo : public QObject +class KStartupLogo : public TQObject { Q_OBJECT + TQ_OBJECT public: KStartupLogo(); ~KStartupLogo(); private: - QGuardedPtr<QWidget> m_splash; + TQGuardedPtr<TQWidget> m_splash; }; #endif |