summaryrefslogtreecommitdiffstats
path: root/kalarm/birthdaydlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kalarm/birthdaydlg.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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/birthdaydlg.h')
-rw-r--r--kalarm/birthdaydlg.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kalarm/birthdaydlg.h b/kalarm/birthdaydlg.h
index b8dd202c..412e0ac5 100644
--- a/kalarm/birthdaydlg.h
+++ b/kalarm/birthdaydlg.h
@@ -20,7 +20,7 @@
#ifndef BIRTHDAYDLG_H
#define BIRTHDAYDLG_H
-#include <qlineedit.h>
+#include <tqlineedit.h>
#include <klistview.h>
#include <kdialogbase.h>
@@ -44,8 +44,8 @@ class BirthdayDlg : public KDialogBase
{
Q_OBJECT
public:
- BirthdayDlg(QWidget* parent = 0);
- QValueList<KAEvent> events() const;
+ BirthdayDlg(TQWidget* parent = 0);
+ TQValueList<KAEvent> events() const;
static void close();
protected slots:
@@ -70,8 +70,8 @@ class BirthdayDlg : public KDialogBase
LateCancelSelector* mLateCancel;
SpecialActionsButton* mSpecialActionsButton;
RepetitionButton* mSubRepetition;
- QString mPrefixText; // last entered value of prefix text
- QString mSuffixText; // last entered value of suffix text
+ TQString mPrefixText; // last entered value of prefix text
+ TQString mSuffixText; // last entered value of suffix text
int mFlags; // event flag bits
};
@@ -80,21 +80,21 @@ class BLineEdit : public QLineEdit
{
Q_OBJECT
public:
- BLineEdit(QWidget* parent = 0, const char* name = 0)
- : QLineEdit(parent, name) {}
- BLineEdit(const QString& text, QWidget* parent = 0, const char* name = 0)
- : QLineEdit(text, parent, name) {}
+ BLineEdit(TQWidget* parent = 0, const char* name = 0)
+ : TQLineEdit(parent, name) {}
+ BLineEdit(const TQString& text, TQWidget* parent = 0, const char* name = 0)
+ : TQLineEdit(text, parent, name) {}
signals:
void focusLost();
protected:
- virtual void focusOutEvent(QFocusEvent*) { emit focusLost(); }
+ virtual void focusOutEvent(TQFocusEvent*) { emit focusLost(); }
};
class BListView : public KListView
{
Q_OBJECT
public:
- BListView(QWidget* parent = 0, const char* name = 0);
+ BListView(TQWidget* parent = 0, const char* name = 0);
public slots:
virtual void slotSelectAll() { selectAll(true); }
virtual void slotDeselect() { selectAll(false); }