summaryrefslogtreecommitdiffstats
path: root/kalarm/birthdaydlg.h
diff options
context:
space:
mode:
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); }