summaryrefslogtreecommitdiffstats
path: root/kalarm/lib/timeperiod.h
diff options
context:
space:
mode:
Diffstat (limited to 'kalarm/lib/timeperiod.h')
-rw-r--r--kalarm/lib/timeperiod.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kalarm/lib/timeperiod.h b/kalarm/lib/timeperiod.h
index ef1a3b5c..2f9513dc 100644
--- a/kalarm/lib/timeperiod.h
+++ b/kalarm/lib/timeperiod.h
@@ -21,8 +21,8 @@
#ifndef TIMEPERIOD_H
#define TIMEPERIOD_H
-#include <qhbox.h>
-#include <qstring.h>
+#include <tqhbox.h>
+#include <tqstring.h>
class QWidgetStack;
class ComboBox;
@@ -67,7 +67,7 @@ class TimePeriod : public QHBox
* @param parent The parent object of this widget.
* @param name The name of this widget.
*/
- TimePeriod(bool allowMinute, QWidget* parent, const char* name = 0);
+ TimePeriod(bool allowMinute, TQWidget* parent, const char* name = 0);
/** Returns true if the widget is read only. */
bool isReadOnly() const { return mReadOnly; }
/** Sets whether the widget is read-only for the user. If read-only,
@@ -103,16 +103,16 @@ class TimePeriod : public QHBox
/** Sets separate WhatsThis texts for the count spin boxes and the units combo box.
* If @p hourMin is omitted, both spin boxes are set to the same WhatsThis text.
*/
- void setWhatsThis(const QString& units, const QString& dayWeek, const QString& hourMin = QString::null);
+ void setWhatsThis(const TQString& units, const TQString& dayWeek, const TQString& hourMin = TQString::null);
- static QString i18n_minutes(); // text of 'minutes' units, lower case
- static QString i18n_Minutes(); // text of 'Minutes' units, initial capitals
- static QString i18n_hours_mins(); // text of 'hours/minutes' units, lower case
- static QString i18n_Hours_Mins(); // text of 'Hours/Minutes' units, initial capitals
- static QString i18n_days(); // text of 'days' units, lower case
- static QString i18n_Days(); // text of 'Days' units, initial capital
- static QString i18n_weeks(); // text of 'weeks' units, lower case
- static QString i18n_Weeks(); // text of 'Weeks' units, initial capital
+ static TQString i18n_minutes(); // text of 'minutes' units, lower case
+ static TQString i18n_Minutes(); // text of 'Minutes' units, initial capitals
+ static TQString i18n_hours_mins(); // text of 'hours/minutes' units, lower case
+ static TQString i18n_Hours_Mins(); // text of 'Hours/Minutes' units, initial capitals
+ static TQString i18n_days(); // text of 'days' units, lower case
+ static TQString i18n_Days(); // text of 'Days' units, initial capital
+ static TQString i18n_weeks(); // text of 'weeks' units, lower case
+ static TQString i18n_Weeks(); // text of 'Weeks' units, initial capital
signals:
/** This signal is emitted whenever the value held in the widget changes.
@@ -131,7 +131,7 @@ class TimePeriod : public QHBox
void showHourMin(bool hourMin);
void adjustDayWeekShown();
- QWidgetStack* mSpinStack; // displays either the days/weeks or hours:minutes spinbox
+ TQWidgetStack* mSpinStack; // displays either the days/weeks or hours:minutes spinbox
SpinBox* mSpinBox; // the minutes/days/weeks value spinbox
TimeSpinBox* mTimeSpinBox; // the hours:minutes value spinbox
ComboBox* mUnitsCombo;