diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-21 17:21:13 +0900 |
commit | ba0125da0228f6da828a083631845c8b43ba3f39 (patch) | |
tree | 186cb740b1017de501e21742f9e098b7efe8ab2f /lilo-config/kde-qt-common | |
parent | f92dcefd4a64dd894569c235f11a7ba883e0a842 (diff) | |
download | tdeadmin-ba0125da0228f6da828a083631845c8b43ba3f39.tar.gz tdeadmin-ba0125da0228f6da828a083631845c8b43ba3f39.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 416c6f3ee66fc83ef557b383b90ebf79d77c1867)
Diffstat (limited to 'lilo-config/kde-qt-common')
-rw-r--r-- | lilo-config/kde-qt-common/EditWidget.h | 2 | ||||
-rw-r--r-- | lilo-config/kde-qt-common/expert.h | 2 | ||||
-rw-r--r-- | lilo-config/kde-qt-common/general.h | 2 | ||||
-rw-r--r-- | lilo-config/kde-qt-common/images.h | 2 | ||||
-rw-r--r-- | lilo-config/kde-qt-common/mainwidget.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lilo-config/kde-qt-common/EditWidget.h b/lilo-config/kde-qt-common/EditWidget.h index 8d17a12..800a59a 100644 --- a/lilo-config/kde-qt-common/EditWidget.h +++ b/lilo-config/kde-qt-common/EditWidget.h @@ -34,7 +34,7 @@ #include <tqpushbutton.h> class EditWidget:public TQHBox { - Q_OBJECT + TQ_OBJECT public: EditWidget(TQString const label="", TQString const text="", bool isFile=false, TQWidget *parent=0, const char *name=0, WFlags f=0, bool allowLines=true); diff --git a/lilo-config/kde-qt-common/expert.h b/lilo-config/kde-qt-common/expert.h index 7bf82c0..7316690 100644 --- a/lilo-config/kde-qt-common/expert.h +++ b/lilo-config/kde-qt-common/expert.h @@ -34,7 +34,7 @@ #include <tqlayout.h> class Expert:public TQWidget { - Q_OBJECT + TQ_OBJECT public: Expert(liloconf *l=0, TQWidget *parent=0, const char *name=0); diff --git a/lilo-config/kde-qt-common/general.h b/lilo-config/kde-qt-common/general.h index 5360177..cc8bb8d 100644 --- a/lilo-config/kde-qt-common/general.h +++ b/lilo-config/kde-qt-common/general.h @@ -35,7 +35,7 @@ #include <tqcheckbox.h> class General:public TQWidget { - Q_OBJECT + TQ_OBJECT public: General(liloconf *l=0, TQWidget *parent=0, const char *name=0); diff --git a/lilo-config/kde-qt-common/images.h b/lilo-config/kde-qt-common/images.h index 9c01cad..99db7d7 100644 --- a/lilo-config/kde-qt-common/images.h +++ b/lilo-config/kde-qt-common/images.h @@ -38,7 +38,7 @@ #include "EditWidget.h" class Images:public TQWidget { - Q_OBJECT + TQ_OBJECT public: Images(liloconf *l=0, TQWidget *parent=0, const char *name=0); diff --git a/lilo-config/kde-qt-common/mainwidget.h b/lilo-config/kde-qt-common/mainwidget.h index 4331ffd..a48d29f 100644 --- a/lilo-config/kde-qt-common/mainwidget.h +++ b/lilo-config/kde-qt-common/mainwidget.h @@ -37,7 +37,7 @@ #include "expert.h" class MainWidget: public TQTabWidget { - Q_OBJECT + TQ_OBJECT public: MainWidget(TQWidget *parent, const char *name=0); |