summaryrefslogtreecommitdiffstats
path: root/kalarm/lib
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:07:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 22:35:23 +0900
commitcd4b0ac22608120ad003f575a1640e1ddc7703df (patch)
treee68977e058f9d4900eaf266d1dbfc277dbae62e0 /kalarm/lib
parentcc2af80602eb3d2a8ea2915d6ff59a10b17f7a21 (diff)
downloadtdepim-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/lib')
-rw-r--r--kalarm/lib/buttongroup.h2
-rw-r--r--kalarm/lib/checkbox.h2
-rw-r--r--kalarm/lib/colourcombo.h2
-rw-r--r--kalarm/lib/combobox.h2
-rw-r--r--kalarm/lib/dateedit.h2
-rw-r--r--kalarm/lib/label.h4
-rw-r--r--kalarm/lib/lineedit.h2
-rw-r--r--kalarm/lib/pushbutton.h2
-rw-r--r--kalarm/lib/radiobutton.h2
-rw-r--r--kalarm/lib/shellprocess.h2
-rw-r--r--kalarm/lib/slider.h2
-rw-r--r--kalarm/lib/spinbox.h2
-rw-r--r--kalarm/lib/spinbox2.h2
-rw-r--r--kalarm/lib/spinbox2private.h4
-rw-r--r--kalarm/lib/synchtimer.h6
-rw-r--r--kalarm/lib/timeedit.h2
-rw-r--r--kalarm/lib/timeperiod.h2
-rw-r--r--kalarm/lib/timespinbox.h2
18 files changed, 22 insertions, 22 deletions
diff --git a/kalarm/lib/buttongroup.h b/kalarm/lib/buttongroup.h
index d1038918..1f72bda7 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 020f9594..9d47d504 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 10be36da..d6c00343 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 f0402c72..cc915f0d 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 405566ec..47a040cb 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 5f26adc8..deae350f 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 ecfd5242..d715770f 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 fd357402..634f8d89 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 e983ebac..c6d95fbc 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 3b198028..316d6ef7 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 bd8e750a..bb13dc76 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 7712cdec..930e8235 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 fe082524..c63f9152 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 093d8c8a..2aac3f6b 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 8d640f0b..2263589c 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 4a74d576..cfe9185b 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 e2e24819..e5cacc9b 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 6d9f5dbe..56482875 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.