summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:05:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-25 13:17:32 +0900
commit91fd99c2cdc453762e21149ceaefdd917e03d9c0 (patch)
tree989b88aa250725046c6cebe9c9c4255fe23b0065
parentc2676876bc73b80fabb8bc9054825a0e4260c2a7 (diff)
downloadtdepowersave-91fd99c2cdc453762e21149ceaefdd917e03d9c0.tar.gz
tdepowersave-91fd99c2cdc453762e21149ceaefdd917e03d9c0.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/autodimm.h2
-rw-r--r--src/autosuspend.h2
-rw-r--r--src/blacklisteditdialog.h2
-rw-r--r--src/configuredialog.h2
-rw-r--r--src/countdowndialog.h2
-rw-r--r--src/dbusInterface.h2
-rw-r--r--src/detaileddialog.h2
-rw-r--r--src/hardware.h2
-rw-r--r--src/hardware_battery.h2
-rw-r--r--src/hardware_batteryCollection.h2
-rw-r--r--src/hardware_cpu.h2
-rw-r--r--src/inactivity.h2
-rw-r--r--src/infodialog.h2
-rw-r--r--src/logviewer.h2
-rw-r--r--src/screen.h2
-rw-r--r--src/suspenddialog.h2
-rw-r--r--src/tdepowersave.h2
17 files changed, 17 insertions, 17 deletions
diff --git a/src/autodimm.h b/src/autodimm.h
index 81b1cf9..08557b4 100644
--- a/src/autodimm.h
+++ b/src/autodimm.h
@@ -37,7 +37,7 @@
class autodimm : public inactivity
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/autosuspend.h b/src/autosuspend.h
index 4fe5832..37a7216 100644
--- a/src/autosuspend.h
+++ b/src/autosuspend.h
@@ -36,7 +36,7 @@
class autosuspend : public inactivity
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/blacklisteditdialog.h b/src/blacklisteditdialog.h
index 8ae17db..fc1c775 100644
--- a/src/blacklisteditdialog.h
+++ b/src/blacklisteditdialog.h
@@ -36,7 +36,7 @@
class blacklistEditDialog: public blacklistedit_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/configuredialog.h b/src/configuredialog.h
index d9e3307..5979f18 100644
--- a/src/configuredialog.h
+++ b/src/configuredialog.h
@@ -41,7 +41,7 @@
class ConfigureDialog: public configure_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/countdowndialog.h b/src/countdowndialog.h
index c50b511..b103c4c 100644
--- a/src/countdowndialog.h
+++ b/src/countdowndialog.h
@@ -35,7 +35,7 @@
class countDownDialog: public countdown_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/dbusInterface.h b/src/dbusInterface.h
index 40dc7bd..3e197f7 100644
--- a/src/dbusInterface.h
+++ b/src/dbusInterface.h
@@ -61,7 +61,7 @@
#define SYSTEMD_LOGIN1_SEAT_IFACE "org.freedesktop.login1.Seat"
class dbusInterface : public TQObject{
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/detaileddialog.h b/src/detaileddialog.h
index 5cc6d4e..c897936 100644
--- a/src/detaileddialog.h
+++ b/src/detaileddialog.h
@@ -50,7 +50,7 @@
*/
class detaileddialog: public detailed_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/hardware.h b/src/hardware.h
index f28f1b4..eb8fe99 100644
--- a/src/hardware.h
+++ b/src/hardware.h
@@ -130,7 +130,7 @@ typedef struct SuspendStates {
class HardwareInfo : public TQObject{
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/hardware_battery.h b/src/hardware_battery.h
index f250700..7cc24e3 100644
--- a/src/hardware_battery.h
+++ b/src/hardware_battery.h
@@ -44,7 +44,7 @@
class Battery : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/hardware_batteryCollection.h b/src/hardware_batteryCollection.h
index 4de81e7..44938c7 100644
--- a/src/hardware_batteryCollection.h
+++ b/src/hardware_batteryCollection.h
@@ -41,7 +41,7 @@
class BatteryCollection : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/hardware_cpu.h b/src/hardware_cpu.h
index b0932a5..bbcca40 100644
--- a/src/hardware_cpu.h
+++ b/src/hardware_cpu.h
@@ -46,7 +46,7 @@
class CPUInfo : public TQObject{
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/inactivity.h b/src/inactivity.h
index 7ad3eb5..5e788d6 100644
--- a/src/inactivity.h
+++ b/src/inactivity.h
@@ -58,7 +58,7 @@ extern "C" {
class inactivity : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/infodialog.h b/src/infodialog.h
index 85d13dc..384a3bb 100644
--- a/src/infodialog.h
+++ b/src/infodialog.h
@@ -37,7 +37,7 @@
class infoDialog: public info_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/logviewer.h b/src/logviewer.h
index 9bb6274..6c17e6a 100644
--- a/src/logviewer.h
+++ b/src/logviewer.h
@@ -37,7 +37,7 @@
class LogViewer: public log_viewer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/screen.h b/src/screen.h
index 3483aa8..629517b 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -48,7 +48,7 @@
*/
class screen : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
private:
diff --git a/src/suspenddialog.h b/src/suspenddialog.h
index 096c9c6..cd80d0b 100644
--- a/src/suspenddialog.h
+++ b/src/suspenddialog.h
@@ -35,7 +35,7 @@
class suspendDialog: public suspend_Dialog {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/src/tdepowersave.h b/src/tdepowersave.h
index 8014b46..e63342c 100644
--- a/src/tdepowersave.h
+++ b/src/tdepowersave.h
@@ -59,7 +59,7 @@ class TDEGlobalAccel;
class tdepowersave : public KSystemTray, public DCOPObject
{
- Q_OBJECT
+ TQ_OBJECT
//
K_DCOP