diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
commit | f0296ef9e1f94e23c00d6f490e565d1dc768416d (patch) | |
tree | 7f3fd9f99621c111ff67f2d62feb5960a3371853 /src/part/settingsDialog.h | |
parent | 3098eb909534268622ce776f9a7bb5310d31b3c1 (diff) | |
download | filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.tar.gz filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.zip |
TQt4 port Filelight
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1233561 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/part/settingsDialog.h')
-rw-r--r-- | src/part/settingsDialog.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/part/settingsDialog.h b/src/part/settingsDialog.h index b3ed375..2b81a9b 100644 --- a/src/part/settingsDialog.h +++ b/src/part/settingsDialog.h @@ -5,18 +5,19 @@ #define SETTINGSDLG_H #include "dialog.h" //generated by uic -#include <qtimer.h> +#include <tqtimer.h> class SettingsDialog : public Dialog { -Q_OBJECT + Q_OBJECT + TQ_OBJECT public: - SettingsDialog( QWidget* =0, const char* =0 ); + SettingsDialog( TQWidget* =0, const char* =0 ); protected: - virtual void closeEvent( QCloseEvent * ); + virtual void closeEvent( TQCloseEvent * ); virtual void reject(); public slots: @@ -40,7 +41,7 @@ signals: void canvasIsDirty( int ); private: - QTimer m_timer; + TQTimer m_timer; static const uint TIMEOUT=1000; }; |