diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeprint/messagewindow.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/messagewindow.h')
-rw-r--r-- | kdeprint/messagewindow.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeprint/messagewindow.h b/kdeprint/messagewindow.h index b364e85cf..a9a93731f 100644 --- a/kdeprint/messagewindow.h +++ b/kdeprint/messagewindow.h @@ -20,8 +20,8 @@ #ifndef MESSAGEWINDOW_H #define MESSAGEWINDOW_H -#include <qwidget.h> -#include <qptrdict.h> +#include <tqwidget.h> +#include <tqptrdict.h> #include <kdelibs_export.h> @@ -34,22 +34,22 @@ class KDEPRINT_EXPORT MessageWindow : public QWidget public: ~MessageWindow(); - static void add( QWidget *parent, const QString& txt, int delay = 500 ); - static void change( QWidget *parent, const QString& txt ); - static void remove( QWidget *parent ); + static void add( TQWidget *parent, const TQString& txt, int delay = 500 ); + static void change( TQWidget *parent, const TQString& txt ); + static void remove( TQWidget *parent ); static void removeAll(); protected slots: void slotTimer(); protected: - MessageWindow( const QString& txt, int delay = 500, QWidget *parent = 0, const char *name = 0 ); - void setText( const QString& txt ); - QString text() const; + MessageWindow( const TQString& txt, int delay = 500, TQWidget *parent = 0, const char *name = 0 ); + void setText( const TQString& txt ); + TQString text() const; private: - QLabel *m_text; - static QPtrDict<MessageWindow> m_windows; + TQLabel *m_text; + static TQPtrDict<MessageWindow> m_windows; }; #endif |