summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:04:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:04:04 +0900
commit29215b1f2ab443fbf0cf8c5ea2eee5cd161cc3ea (patch)
treef12ad541f7df4e86bdf8d029e9e26f0809b8f17c
parentbf62e013156765db0c7c2c1de2c8cc0004a1d33c (diff)
downloadkshutdown-29215b1f.tar.gz
kshutdown-29215b1f.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kshutdown/actions.h2
-rw-r--r--kshutdown/appobserver.h2
-rw-r--r--kshutdown/extras.h2
-rw-r--r--kshutdown/links.h2
-rw-r--r--kshutdown/mactioneditdialog.h2
-rw-r--r--kshutdown/mmainwindow.h2
-rw-r--r--kshutdown/mmessagedialog.h2
-rw-r--r--kshutdown/msettingsdialog.h2
-rw-r--r--kshutdown/mstatstab.h2
-rw-r--r--kshutdown/msystemtray.h2
-rw-r--r--kshutdown/progressbar.h2
-rw-r--r--kshutdown/systemconfig.h2
-rw-r--r--kshutdownlockout/lockout.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/kshutdown/actions.h b/kshutdown/actions.h
index 4f38608..ad906c4 100644
--- a/kshutdown/actions.h
+++ b/kshutdown/actions.h
@@ -37,7 +37,7 @@ class TQPixmap;
/** @short An action manager. */
class Action: public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
diff --git a/kshutdown/appobserver.h b/kshutdown/appobserver.h
index 885c31d..a93ef0e 100644
--- a/kshutdown/appobserver.h
+++ b/kshutdown/appobserver.h
@@ -46,7 +46,7 @@ private:
*/
class AppObserver: public TQHBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor.
diff --git a/kshutdown/extras.h b/kshutdown/extras.h
index 98d1e48..8ae8556 100644
--- a/kshutdown/extras.h
+++ b/kshutdown/extras.h
@@ -31,7 +31,7 @@ class KPushButton;
/** @short Extras - user commands stored in "extras" directory. */
class Extras: public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Destructor.
diff --git a/kshutdown/links.h b/kshutdown/links.h
index 1864171..93fd791 100644
--- a/kshutdown/links.h
+++ b/kshutdown/links.h
@@ -28,7 +28,7 @@ class TQComboBox;
/** @short A link creator/remover. */
class Links: public TQVBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor.
diff --git a/kshutdown/mactioneditdialog.h b/kshutdown/mactioneditdialog.h
index 27147df..5782534 100644
--- a/kshutdown/mactioneditdialog.h
+++ b/kshutdown/mactioneditdialog.h
@@ -37,7 +37,7 @@ class KPushButton;
*/
class MActionEditDialog: public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor.
diff --git a/kshutdown/mmainwindow.h b/kshutdown/mmainwindow.h
index 792af9c..0b17dde 100644
--- a/kshutdown/mmainwindow.h
+++ b/kshutdown/mmainwindow.h
@@ -40,7 +40,7 @@ class KPushButton;
/** @short The main window. */
class MMainWindow: public TDEMainWindow, virtual public KShutdownIface
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Timeout options.
diff --git a/kshutdown/mmessagedialog.h b/kshutdown/mmessagedialog.h
index 826922c..b897400 100644
--- a/kshutdown/mmessagedialog.h
+++ b/kshutdown/mmessagedialog.h
@@ -31,7 +31,7 @@ class KPushButton;
/** @short A warning message dialog (displayed before action execution). */
class MMessageDialog: public KDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor.
diff --git a/kshutdown/msettingsdialog.h b/kshutdown/msettingsdialog.h
index b49a801..b6e3c05 100644
--- a/kshutdown/msettingsdialog.h
+++ b/kshutdown/msettingsdialog.h
@@ -37,7 +37,7 @@ class KPushButton;
/** @short A settings dialog. */
class MSettingsDialog: public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor. Creates a new modal settings dialog.
diff --git a/kshutdown/mstatstab.h b/kshutdown/mstatstab.h
index 3ec8a8d..65e10aa 100644
--- a/kshutdown/mstatstab.h
+++ b/kshutdown/mstatstab.h
@@ -31,7 +31,7 @@ class KPushButton;
/** @short A statistics dialog (output from the `w' command). */
class MStatsTab: public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor.
diff --git a/kshutdown/msystemtray.h b/kshutdown/msystemtray.h
index db9fa66..0a11130 100644
--- a/kshutdown/msystemtray.h
+++ b/kshutdown/msystemtray.h
@@ -29,7 +29,7 @@ class KPixmap;
/** @short A system tray icon. */
class MSystemTray: public KSystemTray
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* System tray icon modes.
diff --git a/kshutdown/progressbar.h b/kshutdown/progressbar.h
index af4a67d..5fed507 100644
--- a/kshutdown/progressbar.h
+++ b/kshutdown/progressbar.h
@@ -25,7 +25,7 @@
#include "progressbar.h"
class ProgressBar: public TQWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
enum Position { TOP, BOTTOM };
virtual ~ProgressBar();
diff --git a/kshutdown/systemconfig.h b/kshutdown/systemconfig.h
index 7ff3e1d..0f71e5d 100644
--- a/kshutdown/systemconfig.h
+++ b/kshutdown/systemconfig.h
@@ -28,7 +28,7 @@ class TDEListViewItem;
/** @short A system configuration manager. */
class SystemConfig: KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Returns @c true if the <b>shut down</b> and @b reboot functions are available.
diff --git a/kshutdownlockout/lockout.h b/kshutdownlockout/lockout.h
index f7a2718..a494b47 100644
--- a/kshutdownlockout/lockout.h
+++ b/kshutdownlockout/lockout.h
@@ -11,7 +11,7 @@ class TDEAction;
*/
class Lockout: public KPanelApplet
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructs a new applet.