diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-16 23:01:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-16 23:01:29 +0000 |
commit | 4304e8d9dab8e20513e38e71b0debdf6937b630c (patch) | |
tree | 76a86f013a811449a5b5bfbbbb962e7db0bbcc6a /src/suspenddialog.h | |
parent | ba24506b3bb46312d998468ad3c1a7f28058b2bd (diff) | |
download | tdepowersave-4304e8d9dab8e20513e38e71b0debdf6937b630c.tar.gz tdepowersave-4304e8d9dab8e20513e38e71b0debdf6937b630c.zip |
Finish TQt4 port of kpowersave
This enables both Qt3 and Qt4 builds
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpowersave@1228282 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/suspenddialog.h')
-rw-r--r-- | src/suspenddialog.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/suspenddialog.h b/src/suspenddialog.h index 22a4527..f5b2de0 100644 --- a/src/suspenddialog.h +++ b/src/suspenddialog.h @@ -36,20 +36,21 @@ class suspendDialog: public suspend_Dialog { Q_OBJECT + TQ_OBJECT public: //! default constructor - suspendDialog(QWidget *parent = 0, const char *name = 0); + suspendDialog(TQWidget *tqparent = 0, const char *name = 0); //! default destructor ~suspendDialog(); //! set all needed icons - void setPixmap( QString ); + void setPixmap( TQString ); //! set the value for the progressbar void setProgressbar( int ); //! set the message for the textlabel - void setTextLabel( QString ); + void setTextLabel( TQString ); }; |