diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 22:35:23 +0900 |
commit | cd4b0ac22608120ad003f575a1640e1ddc7703df (patch) | |
tree | e68977e058f9d4900eaf266d1dbfc277dbae62e0 /kalarm | |
parent | cc2af80602eb3d2a8ea2915d6ff59a10b17f7a21 (diff) | |
download | tdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.tar.gz tdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kalarm')
57 files changed, 79 insertions, 79 deletions
diff --git a/kalarm/alarmcalendar.h b/kalarm/alarmcalendar.h index 91977ea97..a06498e75 100644 --- a/kalarm/alarmcalendar.h +++ b/kalarm/alarmcalendar.h @@ -35,7 +35,7 @@ class TDEConfig; */ class AlarmCalendar : public TQObject { - Q_OBJECT + TQ_OBJECT public: virtual ~AlarmCalendar(); diff --git a/kalarm/alarmlistview.h b/kalarm/alarmlistview.h index a48def331..9da667ed1 100644 --- a/kalarm/alarmlistview.h +++ b/kalarm/alarmlistview.h @@ -63,7 +63,7 @@ class AlarmListViewItem : public EventListViewItemBase class AlarmListView : public EventListViewBase { - Q_OBJECT + TQ_OBJECT // needed by TQObject::isA() calls public: enum ColumnIndex { // default column order diff --git a/kalarm/alarmtimewidget.h b/kalarm/alarmtimewidget.h index 47659adb5..d384c0542 100644 --- a/kalarm/alarmtimewidget.h +++ b/kalarm/alarmtimewidget.h @@ -33,7 +33,7 @@ class TimeSpinBox; class AlarmTimeWidget : public ButtonGroup { - Q_OBJECT + TQ_OBJECT public: enum { // 'mode' values for constructor. May be OR'ed together. diff --git a/kalarm/birthdaydlg.h b/kalarm/birthdaydlg.h index ee5511466..aa7c66aec 100644 --- a/kalarm/birthdaydlg.h +++ b/kalarm/birthdaydlg.h @@ -42,7 +42,7 @@ class BListView; class BirthdayDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: BirthdayDlg(TQWidget* parent = 0); @@ -79,7 +79,7 @@ class BirthdayDlg : public KDialogBase class BLineEdit : public TQLineEdit { - Q_OBJECT + TQ_OBJECT public: BLineEdit(TQWidget* parent = 0, const char* name = 0) @@ -94,7 +94,7 @@ class BLineEdit : public TQLineEdit class BListView : public TDEListView { - Q_OBJECT + TQ_OBJECT public: BListView(TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/daemon.h b/kalarm/daemon.h index 4feba1bbf..b74410389 100644 --- a/kalarm/daemon.h +++ b/kalarm/daemon.h @@ -36,7 +36,7 @@ class NotificationHandler; class Daemon : public TQObject { - Q_OBJECT + TQ_OBJECT public: static void initialise(); @@ -119,7 +119,7 @@ class Daemon : public TQObject class AlarmEnableAction : public TDEToggleAction { - Q_OBJECT + TQ_OBJECT public: AlarmEnableAction(int accel, TQObject* parent, const char* name = 0); diff --git a/kalarm/deferdlg.h b/kalarm/deferdlg.h index 37f8b144f..70fb1e6eb 100644 --- a/kalarm/deferdlg.h +++ b/kalarm/deferdlg.h @@ -29,7 +29,7 @@ class AlarmTimeWidget; class DeferAlarmDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: DeferAlarmDlg(const TQString& caption, const DateTime& initialDT, diff --git a/kalarm/editdlg.h b/kalarm/editdlg.h index 93a3de076..f6e2b16a3 100644 --- a/kalarm/editdlg.h +++ b/kalarm/editdlg.h @@ -57,7 +57,7 @@ class PickAlarmFileRadio; class EditAlarmDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: enum MessageType { MESSAGE, FILE }; diff --git a/kalarm/editdlgprivate.h b/kalarm/editdlgprivate.h index 8851b58b8..f44824fb8 100644 --- a/kalarm/editdlgprivate.h +++ b/kalarm/editdlgprivate.h @@ -26,7 +26,7 @@ class PageFrame : public TQFrame { - Q_OBJECT + TQ_OBJECT public: PageFrame(TQWidget* parent = 0, const char* name = 0) : TQFrame(parent, name) { } @@ -38,7 +38,7 @@ class PageFrame : public TQFrame class TextEdit : public KTextEdit { - Q_OBJECT + TQ_OBJECT public: TextEdit(TQWidget* parent, const char* name = 0); diff --git a/kalarm/emailidcombo.h b/kalarm/emailidcombo.h index a2cbabc22..630212d5a 100644 --- a/kalarm/emailidcombo.h +++ b/kalarm/emailidcombo.h @@ -27,7 +27,7 @@ class EmailIdCombo : public KPIM::IdentityCombo { - Q_OBJECT + TQ_OBJECT public: explicit EmailIdCombo(KPIM::IdentityManager*, TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/eventlistviewbase.h b/kalarm/eventlistviewbase.h index 9f043f770..18d1a7716 100644 --- a/kalarm/eventlistviewbase.h +++ b/kalarm/eventlistviewbase.h @@ -35,7 +35,7 @@ class Find; class EventListViewBase : public TDEListView { - Q_OBJECT + TQ_OBJECT public: typedef TQValueList<EventListViewBase*> InstanceList; diff --git a/kalarm/find.h b/kalarm/find.h index 493f10cc4..dc838f3b7 100644 --- a/kalarm/find.h +++ b/kalarm/find.h @@ -35,7 +35,7 @@ class EventListViewItemBase; class Find : public TQObject { - Q_OBJECT + TQ_OBJECT public: explicit Find(EventListViewBase* parent); diff --git a/kalarm/fontcolour.h b/kalarm/fontcolour.h index e550831e0..c70bcc561 100644 --- a/kalarm/fontcolour.h +++ b/kalarm/fontcolour.h @@ -34,7 +34,7 @@ class CheckBox; class FontColourChooser : public TQWidget { - Q_OBJECT + TQ_OBJECT public: explicit FontColourChooser(TQWidget* parent = 0, const char* name = 0, diff --git a/kalarm/fontcolourbutton.h b/kalarm/fontcolourbutton.h index 6126ad645..efe799d41 100644 --- a/kalarm/fontcolourbutton.h +++ b/kalarm/fontcolourbutton.h @@ -33,7 +33,7 @@ class PushButton; class FontColourButton : public TQFrame { - Q_OBJECT + TQ_OBJECT public: FontColourButton(TQWidget* parent = 0, const char* name = 0); @@ -67,7 +67,7 @@ class FontColourButton : public TQFrame // Font and colour selection dialog displayed by the push button class FontColourDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: FontColourDlg(const TQColor& bg, const TQColor& fg, const TQFont&, bool defaultFont, diff --git a/kalarm/kalarmapp.h b/kalarm/kalarmapp.h index 852143edf..17f707ea8 100644 --- a/kalarm/kalarmapp.h +++ b/kalarm/kalarmapp.h @@ -47,7 +47,7 @@ class ShellProcess; class KAlarmApp : public KUniqueApplication { - Q_OBJECT + TQ_OBJECT public: ~KAlarmApp(); diff --git a/kalarm/kalarmd/adapp.h b/kalarm/kalarmd/adapp.h index 96b24d924..629920942 100644 --- a/kalarm/kalarmd/adapp.h +++ b/kalarm/kalarmd/adapp.h @@ -30,7 +30,7 @@ class AlarmDaemon; class AlarmDaemonApp : public KUniqueApplication { - Q_OBJECT + TQ_OBJECT public: AlarmDaemonApp(); diff --git a/kalarm/kalarmd/adcalendar.h b/kalarm/kalarmd/adcalendar.h index bbc962140..3ba599783 100644 --- a/kalarm/kalarmd/adcalendar.h +++ b/kalarm/kalarmd/adcalendar.h @@ -29,7 +29,7 @@ class ADCalendar; // Alarm Daemon calendar access class ADCalendar : public KCal::CalendarLocal { - Q_OBJECT + TQ_OBJECT public: typedef TQValueList<ADCalendar*>::ConstIterator ConstIterator; diff --git a/kalarm/kalarmd/alarmdaemon.h b/kalarm/kalarmd/alarmdaemon.h index a3260a58e..85509ebd3 100644 --- a/kalarm/kalarmd/alarmdaemon.h +++ b/kalarm/kalarmd/alarmdaemon.h @@ -31,7 +31,7 @@ class ADCalendar; class AlarmDaemon : public TQObject, virtual public AlarmDaemonIface { - Q_OBJECT + TQ_OBJECT public: AlarmDaemon(bool autostart, TQObject* parent = 0, const char* name = 0); diff --git a/kalarm/latecancel.h b/kalarm/latecancel.h index 73bf71300..7baefb42e 100644 --- a/kalarm/latecancel.h +++ b/kalarm/latecancel.h @@ -32,7 +32,7 @@ class CheckBox; class LateCancelSelector : public TQFrame { - Q_OBJECT + TQ_OBJECT public: LateCancelSelector(bool allowHourMinute, TQWidget* parent, const char* name = 0); diff --git a/kalarm/lib/buttongroup.h b/kalarm/lib/buttongroup.h index d1038918d..1f72bda7e 100644 --- a/kalarm/lib/buttongroup.h +++ b/kalarm/lib/buttongroup.h @@ -37,7 +37,7 @@ */ class ButtonGroup : public TQButtonGroup { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/checkbox.h b/kalarm/lib/checkbox.h index 020f95949..9d47d5047 100644 --- a/kalarm/lib/checkbox.h +++ b/kalarm/lib/checkbox.h @@ -41,7 +41,7 @@ */ class CheckBox : public TQCheckBox { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/colourcombo.h b/kalarm/lib/colourcombo.h index 10be36dab..d6c003437 100644 --- a/kalarm/lib/colourcombo.h +++ b/kalarm/lib/colourcombo.h @@ -42,7 +42,7 @@ */ class ColourCombo : public TQComboBox { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(TQColor color READ color WRITE setColor) public: diff --git a/kalarm/lib/combobox.h b/kalarm/lib/combobox.h index f0402c721..cc915f0d9 100644 --- a/kalarm/lib/combobox.h +++ b/kalarm/lib/combobox.h @@ -36,7 +36,7 @@ */ class ComboBox : public TQComboBox { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/dateedit.h b/kalarm/lib/dateedit.h index 405566ec7..47a040cb1 100644 --- a/kalarm/lib/dateedit.h +++ b/kalarm/lib/dateedit.h @@ -36,7 +36,7 @@ */ class DateEdit : public KDateEdit { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/label.h b/kalarm/lib/label.h index 5f26adc8f..deae350f2 100644 --- a/kalarm/lib/label.h +++ b/kalarm/lib/label.h @@ -40,7 +40,7 @@ class LabelFocusWidget; */ class Label : public TQLabel { - Q_OBJECT + TQ_OBJECT friend class LabelFocusWidget; public: @@ -87,7 +87,7 @@ class Label : public TQLabel // Private class for use by Label class LabelFocusWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: LabelFocusWidget(TQWidget* parent, const char* name = 0); diff --git a/kalarm/lib/lineedit.h b/kalarm/lib/lineedit.h index ecfd52422..d715770f9 100644 --- a/kalarm/lib/lineedit.h +++ b/kalarm/lib/lineedit.h @@ -42,7 +42,7 @@ */ class LineEdit : public KLineEdit { - Q_OBJECT + TQ_OBJECT public: /** Types of drag and drop content which will be accepted. diff --git a/kalarm/lib/pushbutton.h b/kalarm/lib/pushbutton.h index fd3574027..634f8d890 100644 --- a/kalarm/lib/pushbutton.h +++ b/kalarm/lib/pushbutton.h @@ -36,7 +36,7 @@ */ class PushButton : public TQPushButton { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly) public: diff --git a/kalarm/lib/radiobutton.h b/kalarm/lib/radiobutton.h index e983ebaca..c6d95fbc8 100644 --- a/kalarm/lib/radiobutton.h +++ b/kalarm/lib/radiobutton.h @@ -41,7 +41,7 @@ */ class RadioButton : public TQRadioButton { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/shellprocess.h b/kalarm/lib/shellprocess.h index 3b198028d..316d6ef7a 100644 --- a/kalarm/lib/shellprocess.h +++ b/kalarm/lib/shellprocess.h @@ -49,7 +49,7 @@ */ class ShellProcess : public KShellProcess { - Q_OBJECT + TQ_OBJECT public: /** Current status of the shell process. diff --git a/kalarm/lib/slider.h b/kalarm/lib/slider.h index bd8e750ae..bb13dc76b 100644 --- a/kalarm/lib/slider.h +++ b/kalarm/lib/slider.h @@ -36,7 +36,7 @@ */ class Slider : public TQSlider { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly) public: diff --git a/kalarm/lib/spinbox.h b/kalarm/lib/spinbox.h index 7712cdec7..930e8235b 100644 --- a/kalarm/lib/spinbox.h +++ b/kalarm/lib/spinbox.h @@ -41,7 +41,7 @@ */ class SpinBox : public TQSpinBox { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/spinbox2.h b/kalarm/lib/spinbox2.h index fe082524a..c63f91526 100644 --- a/kalarm/lib/spinbox2.h +++ b/kalarm/lib/spinbox2.h @@ -55,7 +55,7 @@ class ExtraSpinBox; */ class SpinBox2 : public TQFrame { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/spinbox2private.h b/kalarm/lib/spinbox2private.h index 093d8c8a7..2aac3f6b2 100644 --- a/kalarm/lib/spinbox2private.h +++ b/kalarm/lib/spinbox2private.h @@ -33,7 +33,7 @@ class ExtraSpinBox : public SpinBox { - Q_OBJECT + TQ_OBJECT public: explicit ExtraSpinBox(TQWidget* parent, const char* name = 0) @@ -60,7 +60,7 @@ class ExtraSpinBox : public SpinBox class SpinMirror : public TQCanvasView { - Q_OBJECT + TQ_OBJECT public: explicit SpinMirror(SpinBox*, TQFrame* spinFrame, TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/lib/synchtimer.h b/kalarm/lib/synchtimer.h index 8d640f0b8..2263589cd 100644 --- a/kalarm/lib/synchtimer.h +++ b/kalarm/lib/synchtimer.h @@ -36,7 +36,7 @@ class TQTimer; */ class SynchTimer : public TQObject { - Q_OBJECT + TQ_OBJECT public: virtual ~SynchTimer(); @@ -76,7 +76,7 @@ class SynchTimer : public TQObject */ class MinuteTimer : public SynchTimer { - Q_OBJECT + TQ_OBJECT public: virtual ~MinuteTimer() { mInstance = 0; } @@ -116,7 +116,7 @@ class MinuteTimer : public SynchTimer */ class DailyTimer : public SynchTimer { - Q_OBJECT + TQ_OBJECT public: virtual ~DailyTimer(); diff --git a/kalarm/lib/timeedit.h b/kalarm/lib/timeedit.h index 4a74d5765..cfe9185bb 100644 --- a/kalarm/lib/timeedit.h +++ b/kalarm/lib/timeedit.h @@ -49,7 +49,7 @@ class TimeSpinBox; */ class TimeEdit : public TQHBox { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/lib/timeperiod.h b/kalarm/lib/timeperiod.h index e2e24819f..e5cacc9b6 100644 --- a/kalarm/lib/timeperiod.h +++ b/kalarm/lib/timeperiod.h @@ -49,7 +49,7 @@ class TimeSpinBox; */ class TimePeriod : public TQHBox { - Q_OBJECT + TQ_OBJECT public: /** Units for the time period. diff --git a/kalarm/lib/timespinbox.h b/kalarm/lib/timespinbox.h index 6d9f5dbe5..564828753 100644 --- a/kalarm/lib/timespinbox.h +++ b/kalarm/lib/timespinbox.h @@ -44,7 +44,7 @@ */ class TimeSpinBox : public SpinBox2 { - Q_OBJECT + TQ_OBJECT public: /** Constructor for a wrapping time spin box which can be used to enter a time of day. diff --git a/kalarm/mainwindow.h b/kalarm/mainwindow.h index 2e39e027c..fdb05b38e 100644 --- a/kalarm/mainwindow.h +++ b/kalarm/mainwindow.h @@ -41,7 +41,7 @@ class TemplateMenuAction; class MainWindow : public MainWindowBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/kalarm/mainwindowbase.h b/kalarm/mainwindowbase.h index 8ecdffe24..41e7867d7 100644 --- a/kalarm/mainwindowbase.h +++ b/kalarm/mainwindowbase.h @@ -33,7 +33,7 @@ */ class MainWindowBase : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: diff --git a/kalarm/messagewin.h b/kalarm/messagewin.h index 96f8b1f98..8cf487407 100644 --- a/kalarm/messagewin.h +++ b/kalarm/messagewin.h @@ -43,7 +43,7 @@ namespace KDE { class PlayObject; } */ class MessageWin : public MainWindowBase { - Q_OBJECT + TQ_OBJECT public: MessageWin(); // for session management restoration only diff --git a/kalarm/pickfileradio.h b/kalarm/pickfileradio.h index f30ca7f63..ba72d58c8 100644 --- a/kalarm/pickfileradio.h +++ b/kalarm/pickfileradio.h @@ -49,7 +49,7 @@ class LineEdit; */ class PickFileRadio : public RadioButton { - Q_OBJECT + TQ_OBJECT public: /** Constructor. diff --git a/kalarm/prefdlg.h b/kalarm/prefdlg.h index a58e22d7a..94a7da459 100644 --- a/kalarm/prefdlg.h +++ b/kalarm/prefdlg.h @@ -53,7 +53,7 @@ class MiscPrefTab; // The Preferences dialog class KAlarmPrefDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: static void display(); @@ -83,7 +83,7 @@ class KAlarmPrefDlg : public KDialogBase // Base class for each tab in the Preferences dialog class PrefsTabBase : public TQWidget { - Q_OBJECT + TQ_OBJECT public: PrefsTabBase(TQVBox*); @@ -105,7 +105,7 @@ class PrefsTabBase : public TQWidget // Miscellaneous tab of the Preferences dialog class MiscPrefTab : public PrefsTabBase { - Q_OBJECT + TQ_OBJECT public: MiscPrefTab(TQVBox*); @@ -151,7 +151,7 @@ class MiscPrefTab : public PrefsTabBase // Email tab of the Preferences dialog class EmailPrefTab : public PrefsTabBase { - Q_OBJECT + TQ_OBJECT public: EmailPrefTab(TQVBox*); @@ -187,7 +187,7 @@ class EmailPrefTab : public PrefsTabBase // Edit defaults tab of the Preferences dialog class EditPrefTab : public PrefsTabBase { - Q_OBJECT + TQ_OBJECT public: EditPrefTab(TQVBox*); @@ -226,7 +226,7 @@ class EditPrefTab : public PrefsTabBase // View tab of the Preferences dialog class ViewPrefTab : public PrefsTabBase { - Q_OBJECT + TQ_OBJECT public: ViewPrefTab(TQVBox*); @@ -259,7 +259,7 @@ class ViewPrefTab : public PrefsTabBase // Font & Colour tab of the Preferences dialog class FontColourPrefTab : public PrefsTabBase { - Q_OBJECT + TQ_OBJECT public: FontColourPrefTab(TQVBox*); diff --git a/kalarm/preferences.h b/kalarm/preferences.h index 77adeb58f..cce6c6bbd 100644 --- a/kalarm/preferences.h +++ b/kalarm/preferences.h @@ -41,7 +41,7 @@ class TQWidget; // Settings configured in the Preferences dialog class Preferences : public TQObject { - Q_OBJECT + TQ_OBJECT public: enum MailClient { SENDMAIL, KMAIL }; diff --git a/kalarm/recurrenceedit.h b/kalarm/recurrenceedit.h index 03d492c0c..df99e4c71 100644 --- a/kalarm/recurrenceedit.h +++ b/kalarm/recurrenceedit.h @@ -55,7 +55,7 @@ class YearlyRule; class RecurrenceEdit : public TQFrame { - Q_OBJECT + TQ_OBJECT public: // Don't alter the order of these recurrence types diff --git a/kalarm/recurrenceeditprivate.h b/kalarm/recurrenceeditprivate.h index a38248512..b8bf78183 100644 --- a/kalarm/recurrenceeditprivate.h +++ b/kalarm/recurrenceeditprivate.h @@ -46,7 +46,7 @@ class NoRule : public TQFrame class Rule : public NoRule { - Q_OBJECT + TQ_OBJECT public: Rule(const TQString& freqText, const TQString& freqWhatsThis, bool time, bool readOnly, @@ -72,7 +72,7 @@ class Rule : public NoRule // Subdaily rule choices class SubDailyRule : public Rule { - Q_OBJECT + TQ_OBJECT public: SubDailyRule(bool readOnly, TQWidget* parent, const char* name = 0); @@ -81,7 +81,7 @@ class SubDailyRule : public Rule // Daily/weekly rule choices base class class DayWeekRule : public Rule { - Q_OBJECT + TQ_OBJECT public: DayWeekRule(const TQString& freqText, const TQString& freqWhatsThis, const TQString& daysWhatsThis, @@ -116,7 +116,7 @@ class WeeklyRule : public DayWeekRule // Monthly/yearly rule choices base class class MonthYearRule : public Rule { - Q_OBJECT + TQ_OBJECT public: enum DayPosType { DATE, POS }; @@ -171,7 +171,7 @@ class MonthlyRule : public MonthYearRule // Yearly rule choices class YearlyRule : public MonthYearRule { - Q_OBJECT + TQ_OBJECT public: YearlyRule(bool readOnly, TQWidget* parent, const char* name = 0); diff --git a/kalarm/reminder.h b/kalarm/reminder.h index 14e2e9dfd..c8e559536 100644 --- a/kalarm/reminder.h +++ b/kalarm/reminder.h @@ -29,7 +29,7 @@ class CheckBox; class Reminder : public TQFrame { - Q_OBJECT + TQ_OBJECT public: Reminder(const TQString& caption, const TQString& reminderWhatsThis, const TQString& valueWhatsThis, diff --git a/kalarm/repetition.h b/kalarm/repetition.h index b28293c34..b59216caf 100644 --- a/kalarm/repetition.h +++ b/kalarm/repetition.h @@ -34,7 +34,7 @@ class RepetitionDlg; class RepetitionButton : public TQPushButton { - Q_OBJECT + TQ_OBJECT public: RepetitionButton(const TQString& caption, bool waitForInitialisation, TQWidget* parent, const char* name = 0); @@ -70,7 +70,7 @@ class RepetitionButton : public TQPushButton class RepetitionDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: RepetitionDlg(const TQString& caption, bool readOnly, TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/sounddlg.h b/kalarm/sounddlg.h index 70f01adde..62c46ade5 100644 --- a/kalarm/sounddlg.h +++ b/kalarm/sounddlg.h @@ -38,7 +38,7 @@ class Slider; class SoundDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: SoundDlg(const TQString& file, float volume, float fadeVolume, int fadeSeconds, bool repeat, diff --git a/kalarm/soundpicker.h b/kalarm/soundpicker.h index 3f150b190..72ff4a869 100644 --- a/kalarm/soundpicker.h +++ b/kalarm/soundpicker.h @@ -32,7 +32,7 @@ class PushButton; class SoundPicker : public TQFrame { - Q_OBJECT + TQ_OBJECT public: /** Sound options which can be selected for when the alarm is displayed. diff --git a/kalarm/specialactions.h b/kalarm/specialactions.h index 31df55459..db7192e5d 100644 --- a/kalarm/specialactions.h +++ b/kalarm/specialactions.h @@ -30,7 +30,7 @@ class KLineEdit; class SpecialActionsButton : public TQPushButton { - Q_OBJECT + TQ_OBJECT public: SpecialActionsButton(const TQString& caption, TQWidget* parent = 0, const char* name = 0); @@ -56,7 +56,7 @@ class SpecialActionsButton : public TQPushButton // Pre- and post-alarm actions widget class SpecialActions : public TQWidget { - Q_OBJECT + TQ_OBJECT public: SpecialActions(TQWidget* parent = 0, const char* name = 0); @@ -76,7 +76,7 @@ class SpecialActions : public TQWidget // Pre- and post-alarm actions dialogue displayed by the push button class SpecialActionsDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: SpecialActionsDlg(const TQString& preAction, const TQString& postAction, diff --git a/kalarm/startdaytimer.h b/kalarm/startdaytimer.h index e422f6176..23d84073a 100644 --- a/kalarm/startdaytimer.h +++ b/kalarm/startdaytimer.h @@ -34,7 +34,7 @@ */ class StartOfDayTimer : public DailyTimer { - Q_OBJECT + TQ_OBJECT public: virtual ~StartOfDayTimer() { } diff --git a/kalarm/templatedlg.h b/kalarm/templatedlg.h index f85c10588..4d814eb85 100644 --- a/kalarm/templatedlg.h +++ b/kalarm/templatedlg.h @@ -29,7 +29,7 @@ class KAEvent; class TemplateDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: static TemplateDlg* create(TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/templatelistview.h b/kalarm/templatelistview.h index 530a073a0..7d7d084d9 100644 --- a/kalarm/templatelistview.h +++ b/kalarm/templatelistview.h @@ -48,7 +48,7 @@ class TemplateListViewItem : public EventListViewItemBase class TemplateListView : public EventListViewBase { - Q_OBJECT + TQ_OBJECT public: explicit TemplateListView(bool includeCmdAlarms, const TQString& whatsThisText, TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/templatemenuaction.h b/kalarm/templatemenuaction.h index abcbf92cd..51a1e4faa 100644 --- a/kalarm/templatemenuaction.h +++ b/kalarm/templatemenuaction.h @@ -27,7 +27,7 @@ class KAEvent; class TemplateMenuAction : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: TemplateMenuAction(const TQString& label, const TQString& icon, TQObject* receiver, diff --git a/kalarm/templatepickdlg.h b/kalarm/templatepickdlg.h index d0a685368..a72ef2169 100644 --- a/kalarm/templatepickdlg.h +++ b/kalarm/templatepickdlg.h @@ -28,7 +28,7 @@ class KAEvent; class TemplatePickDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: TemplatePickDlg(TQWidget* parent = 0, const char* name = 0); diff --git a/kalarm/timeselector.h b/kalarm/timeselector.h index 00cf15c53..7bb8d3327 100644 --- a/kalarm/timeselector.h +++ b/kalarm/timeselector.h @@ -30,7 +30,7 @@ class CheckBox; class TimeSelector : public TQFrame { - Q_OBJECT + TQ_OBJECT public: TimeSelector(const TQString& selectText, const TQString& postfix, const TQString& selectWhatsThis, diff --git a/kalarm/traywindow.h b/kalarm/traywindow.h index 322df2381..eecc76639 100644 --- a/kalarm/traywindow.h +++ b/kalarm/traywindow.h @@ -31,7 +31,7 @@ class TrayTooltip; class TrayWindow : public KSystemTray { - Q_OBJECT + TQ_OBJECT public: TrayWindow(MainWindow* parent, const char* name = 0); diff --git a/kalarm/undo.h b/kalarm/undo.h index 0f76408ac..2f964e756 100644 --- a/kalarm/undo.h +++ b/kalarm/undo.h @@ -32,7 +32,7 @@ class UndoItem; class Undo : public TQObject { - Q_OBJECT + TQ_OBJECT public: enum Type { NONE, UNDO, REDO }; |