diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kalarm/specialactions.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kalarm/specialactions.h')
-rw-r--r-- | kalarm/specialactions.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kalarm/specialactions.h b/kalarm/specialactions.h index ba1106d04..4cc7b698d 100644 --- a/kalarm/specialactions.h +++ b/kalarm/specialactions.h @@ -22,8 +22,8 @@ #define SPECIALACTIONS_H #include <kdialogbase.h> -#include <qwidget.h> -#include <qpushbutton.h> +#include <tqwidget.h> +#include <tqpushbutton.h> class KLineEdit; @@ -32,10 +32,10 @@ class SpecialActionsButton : public QPushButton { Q_OBJECT public: - SpecialActionsButton(const QString& caption, QWidget* parent = 0, const char* name = 0); - void setActions(const QString& pre, const QString& post); - const QString& preAction() const { return mPreAction; } - const QString& postAction() const { return mPostAction; } + SpecialActionsButton(const TQString& caption, TQWidget* parent = 0, const char* name = 0); + void setActions(const TQString& pre, const TQString& post); + const TQString& preAction() const { return mPreAction; } + const TQString& postAction() const { return mPostAction; } virtual void setReadOnly(bool ro) { mReadOnly = ro; } virtual bool isReadOnly() const { return mReadOnly; } @@ -46,8 +46,8 @@ class SpecialActionsButton : public QPushButton void slotButtonPressed(); private: - QString mPreAction; - QString mPostAction; + TQString mPreAction; + TQString mPostAction; bool mReadOnly; }; @@ -57,10 +57,10 @@ class SpecialActions : public QWidget { Q_OBJECT public: - SpecialActions(QWidget* parent = 0, const char* name = 0); - void setActions(const QString& pre, const QString& post); - QString preAction() const; - QString postAction() const; + SpecialActions(TQWidget* parent = 0, const char* name = 0); + void setActions(const TQString& pre, const TQString& post); + TQString preAction() const; + TQString postAction() const; void setReadOnly(bool); bool isReadOnly() const { return mReadOnly; } @@ -76,15 +76,15 @@ class SpecialActionsDlg : public KDialogBase { Q_OBJECT public: - SpecialActionsDlg(const QString& preAction, const QString& postAction, - const QString& caption, QWidget* parent = 0, const char* name = 0); - QString preAction() const { return mActions->preAction(); } - QString postAction() const { return mActions->postAction(); } + SpecialActionsDlg(const TQString& preAction, const TQString& postAction, + const TQString& caption, TQWidget* parent = 0, const char* name = 0); + TQString preAction() const { return mActions->preAction(); } + TQString postAction() const { return mActions->postAction(); } void setReadOnly(bool ro) { mActions->setReadOnly(ro); } bool isReadOnly() const { return mActions->isReadOnly(); } protected: - virtual void resizeEvent(QResizeEvent*); + virtual void resizeEvent(TQResizeEvent*); protected slots: virtual void slotOk(); |