summaryrefslogtreecommitdiffstats
path: root/karm/edittaskdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'karm/edittaskdialog.h')
-rw-r--r--karm/edittaskdialog.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/karm/edittaskdialog.h b/karm/edittaskdialog.h
index 0954d8b5..91eb361d 100644
--- a/karm/edittaskdialog.h
+++ b/karm/edittaskdialog.h
@@ -24,7 +24,7 @@
#include <vector>
#include <kdialogbase.h>
-#include <qcheckbox.h>
+#include <tqcheckbox.h>
#include "desktoplist.h"
@@ -45,9 +45,9 @@ class EditTaskDialog : public KDialogBase
Q_OBJECT
public:
- EditTaskDialog(QString caption, bool editDlg, DesktopList* desktopList=0);
- void setTask(const QString &name, long time, long sessionTime);
- QString taskName() const;
+ EditTaskDialog(TQString caption, bool editDlg, DesktopList* desktopList=0);
+ void setTask(const TQString &name, long time, long sessionTime);
+ TQString taskName() const;
// return user choices
void status( long *time, long *timeDiff,
@@ -60,25 +60,25 @@ class EditTaskDialog : public KDialogBase
void slotAutoTrackingPressed();
private:
- QLineEdit* _name;
+ TQLineEdit* _name;
KArmTimeWidget* _timeTW;
KArmTimeWidget* _sessionTW;
KArmTimeWidget* _diffTW;
- QComboBox* _operator;
- std::vector<QCheckBox*> _deskBox; // we only need an array, but ISO forbids
+ TQComboBox* _operator;
+ std::vector<TQCheckBox*> _deskBox; // we only need an array, but ISO forbids
// passing an array as a function argument
long origTime;
long origSession;
- QRadioButton *_absoluteRB;
- QRadioButton *_relativeRB;
+ TQRadioButton *_absoluteRB;
+ TQRadioButton *_relativeRB;
- QCheckBox *_desktopCB;
+ TQCheckBox *_desktopCB;
int desktopCount;
- QLabel* _timeLA;
- QLabel* _sessionLA;
+ TQLabel* _timeLA;
+ TQLabel* _sessionLA;
};