diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
commit | 814bf5fc4f403c13b0d8274c7f13fbef183c5c84 (patch) | |
tree | 96dc8b35683388ab4d17734791984f05d2e82621 /tdm/kfrontend | |
parent | 873f0a21c92bc7b737cade48526afddc219aacc3 (diff) | |
download | tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.tar.gz tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdm/kfrontend')
-rw-r--r-- | tdm/kfrontend/kchooser.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/kconsole.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/kgapp.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/kgdialog.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/kgreeter.h | 8 | ||||
-rw-r--r-- | tdm/kfrontend/kgverify.h | 10 | ||||
-rw-r--r-- | tdm/kfrontend/krootimage.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/sakdlg.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/tdmadmindialog.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/tdmclock.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/tdmshutdown.h | 18 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmitem.cpp | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmitem.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmlabel.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmpixmap.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmrect.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmthemer.h | 2 |
17 files changed, 32 insertions, 32 deletions
diff --git a/tdm/kfrontend/kchooser.h b/tdm/kfrontend/kchooser.h index fcf14b1e1..1382ddd57 100644 --- a/tdm/kfrontend/kchooser.h +++ b/tdm/kfrontend/kchooser.h @@ -33,7 +33,7 @@ class TQListView; class TQListViewItem; class ChooserDlg : public KGDialog { - Q_OBJECT + TQ_OBJECT typedef KGDialog inherited; public: diff --git a/tdm/kfrontend/kconsole.h b/tdm/kfrontend/kconsole.h index 2b3e2aac3..04d197652 100644 --- a/tdm/kfrontend/kconsole.h +++ b/tdm/kfrontend/kconsole.h @@ -30,7 +30,7 @@ class TQSocketNotifier; class KPty; class KConsole : public TQTextEdit { - Q_OBJECT + TQ_OBJECT typedef TQTextEdit inherited; public: diff --git a/tdm/kfrontend/kgapp.h b/tdm/kfrontend/kgapp.h index 4b6c65f6a..0a1c69d19 100644 --- a/tdm/kfrontend/kgapp.h +++ b/tdm/kfrontend/kgapp.h @@ -34,7 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #endif class GreeterApp : public TDEApplication { - Q_OBJECT + TQ_OBJECT typedef TDEApplication inherited; public: diff --git a/tdm/kfrontend/kgdialog.h b/tdm/kfrontend/kgdialog.h index a902b6ff0..fe084ca0b 100644 --- a/tdm/kfrontend/kgdialog.h +++ b/tdm/kfrontend/kgdialog.h @@ -41,7 +41,7 @@ class KGVerify; #define ex_choose 3 class KGDialog : public FDialog { - Q_OBJECT + TQ_OBJECT typedef FDialog inherited; public: diff --git a/tdm/kfrontend/kgreeter.h b/tdm/kfrontend/kgreeter.h index f715b3a8c..ed634c6e8 100644 --- a/tdm/kfrontend/kgreeter.h +++ b/tdm/kfrontend/kgreeter.h @@ -69,7 +69,7 @@ struct SessType { // class ControlPipeHandlerObject : public TQObject { - Q_OBJECT + TQ_OBJECT public: ControlPipeHandlerObject(); @@ -93,7 +93,7 @@ class ControlPipeHandlerObject : public TQObject // TDM greeter // class KGreeter : public KGDialog, public KGVerifyHandler { - Q_OBJECT + TQ_OBJECT typedef KGDialog inherited; public: @@ -166,7 +166,7 @@ class KGreeter : public KGDialog, public KGVerifyHandler { }; class KStdGreeter : public KGreeter { - Q_OBJECT + TQ_OBJECT typedef KGreeter inherited; public: @@ -187,7 +187,7 @@ class KStdGreeter : public KGreeter { }; class KThemedGreeter : public KGreeter { - Q_OBJECT + TQ_OBJECT typedef KGreeter inherited; public: diff --git a/tdm/kfrontend/kgverify.h b/tdm/kfrontend/kgverify.h index 7e3b7f89f..fef509d17 100644 --- a/tdm/kfrontend/kgverify.h +++ b/tdm/kfrontend/kgverify.h @@ -38,7 +38,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // helper class, nuke when qt supports suspend()/resume() class QXTimer : public TQObject { - Q_OBJECT + TQ_OBJECT typedef TQObject inherited; public: @@ -89,7 +89,7 @@ struct GreeterPluginHandle { typedef TQValueVector<int> PluginList; class KGVerify : public TQObject, public KGreeterPluginHandler { - Q_OBJECT + TQ_OBJECT typedef TQObject inherited; public: @@ -191,7 +191,7 @@ class KGVerify : public TQObject, public KGreeterPluginHandler { }; class KGStdVerify : public KGVerify { - Q_OBJECT + TQ_OBJECT typedef KGVerify inherited; public: @@ -216,7 +216,7 @@ class KGStdVerify : public KGVerify { }; class KGThemedVerify : public KGVerify { - Q_OBJECT + TQ_OBJECT typedef KGVerify inherited; public: @@ -237,7 +237,7 @@ class KGThemedVerify : public KGVerify { }; class KGChTok : public FDialog, public KGVerifyHandler { - Q_OBJECT + TQ_OBJECT typedef FDialog inherited; public: diff --git a/tdm/kfrontend/krootimage.h b/tdm/kfrontend/krootimage.h index e002ce230..65b55ba45 100644 --- a/tdm/kfrontend/krootimage.h +++ b/tdm/kfrontend/krootimage.h @@ -32,7 +32,7 @@ Boston, MA 02110-1301, USA. class MyApplication : public TDEApplication { - Q_OBJECT + TQ_OBJECT public: MyApplication( const char * ); diff --git a/tdm/kfrontend/sakdlg.h b/tdm/kfrontend/sakdlg.h index fd77dd028..8854d8ee0 100644 --- a/tdm/kfrontend/sakdlg.h +++ b/tdm/kfrontend/sakdlg.h @@ -31,7 +31,7 @@ class TDECryptographicCardDevice; // class SAKDlg : public TQDialog { - Q_OBJECT + TQ_OBJECT public: SAKDlg(TQWidget *parent); diff --git a/tdm/kfrontend/tdmadmindialog.h b/tdm/kfrontend/tdmadmindialog.h index e5a68fbb9..bf0e22dce 100644 --- a/tdm/kfrontend/tdmadmindialog.h +++ b/tdm/kfrontend/tdmadmindialog.h @@ -37,7 +37,7 @@ class TQButtonGroup; class TQComboBox; class TDMAdmin : public FDialog, public KGVerifyHandler { - Q_OBJECT + TQ_OBJECT typedef FDialog inherited; public: diff --git a/tdm/kfrontend/tdmclock.h b/tdm/kfrontend/tdmclock.h index 89a48eb8e..c579cb81c 100644 --- a/tdm/kfrontend/tdmclock.h +++ b/tdm/kfrontend/tdmclock.h @@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include <tqframe.h> class KdmClock : public TQFrame { - Q_OBJECT + TQ_OBJECT typedef TQFrame inherited; public: diff --git a/tdm/kfrontend/tdmshutdown.h b/tdm/kfrontend/tdmshutdown.h index 6a2ee3a70..603511267 100644 --- a/tdm/kfrontend/tdmshutdown.h +++ b/tdm/kfrontend/tdmshutdown.h @@ -46,7 +46,7 @@ class TQLineEdit; enum { Authed = TQDialog::Accepted + 1, Schedule }; class TDMShutdownBase : public FDialog, public KGVerifyHandler { - Q_OBJECT + TQ_OBJECT typedef FDialog inherited; public: @@ -94,7 +94,7 @@ class TDMShutdownBase : public FDialog, public KGVerifyHandler { class TDMShutdown : public TDMShutdownBase { - Q_OBJECT + TQ_OBJECT typedef TDMShutdownBase inherited; public: @@ -124,7 +124,7 @@ class TDMShutdown : public TDMShutdownBase { }; class TDMRadioButton : public TQRadioButton { - Q_OBJECT + TQ_OBJECT typedef TQRadioButton inherited; public: @@ -139,7 +139,7 @@ class TDMRadioButton : public TQRadioButton { }; class TDMDelayedPushButton : public KPushButton { - Q_OBJECT + TQ_OBJECT typedef KPushButton inherited; public: @@ -157,7 +157,7 @@ class TDMDelayedPushButton : public KPushButton { }; class TDMSlimShutdown : public FDialog { - Q_OBJECT + TQ_OBJECT typedef FDialog inherited; public: @@ -178,7 +178,7 @@ class TDMSlimShutdown : public FDialog { }; class TDMConfShutdown : public TDMShutdownBase { - Q_OBJECT + TQ_OBJECT typedef TDMShutdownBase inherited; public: @@ -187,7 +187,7 @@ class TDMConfShutdown : public TDMShutdownBase { }; class TDMCancelShutdown : public TDMShutdownBase { - Q_OBJECT + TQ_OBJECT typedef TDMShutdownBase inherited; public: @@ -197,7 +197,7 @@ class TDMCancelShutdown : public TDMShutdownBase { class KSMPushButton : public KPushButton { - Q_OBJECT + TQ_OBJECT public: @@ -215,7 +215,7 @@ private: class FlatButton : public TQToolButton { - Q_OBJECT + TQ_OBJECT public: diff --git a/tdm/kfrontend/themer/tdmitem.cpp b/tdm/kfrontend/themer/tdmitem.cpp index 955ef8f02..969833511 100644 --- a/tdm/kfrontend/themer/tdmitem.cpp +++ b/tdm/kfrontend/themer/tdmitem.cpp @@ -307,7 +307,7 @@ KdmItem::paint( TQPainter *p, const TQRect &rect ) } if (myWidget || (myLayoutItem && myLayoutItem->widget())) { - // TDEListView because it's missing a Q_OBJECT + // TDEListView because it's missing a TQ_OBJECT // FIXME: This is a nice idea in theory, but in practice it is // very confusing for the user not to see the empty list box // delineated from the rest of the greeter. diff --git a/tdm/kfrontend/themer/tdmitem.h b/tdm/kfrontend/themer/tdmitem.h index d2aeed69c..ad07f16cb 100644 --- a/tdm/kfrontend/themer/tdmitem.h +++ b/tdm/kfrontend/themer/tdmitem.h @@ -81,7 +81,7 @@ class TQLayoutItem; */ class KdmItem : public TQObject { - Q_OBJECT + TQ_OBJECT friend class KdmThemer; diff --git a/tdm/kfrontend/themer/tdmlabel.h b/tdm/kfrontend/themer/tdmlabel.h index e45d68091..37b10be56 100644 --- a/tdm/kfrontend/themer/tdmlabel.h +++ b/tdm/kfrontend/themer/tdmlabel.h @@ -34,7 +34,7 @@ class TQTimer; */ class KdmLabel : public KdmItem { - Q_OBJECT + TQ_OBJECT public: KdmLabel( KdmItem *parent, const TQDomNode &node, const char *name = 0 ); diff --git a/tdm/kfrontend/themer/tdmpixmap.h b/tdm/kfrontend/themer/tdmpixmap.h index faa71a034..90d0a38aa 100644 --- a/tdm/kfrontend/themer/tdmpixmap.h +++ b/tdm/kfrontend/themer/tdmpixmap.h @@ -35,7 +35,7 @@ */ class KdmPixmap : public KdmItem { - Q_OBJECT + TQ_OBJECT public: KdmPixmap( KdmItem *parent, const TQDomNode &node, const char *name = 0 ); diff --git a/tdm/kfrontend/themer/tdmrect.h b/tdm/kfrontend/themer/tdmrect.h index 6dfdc126a..8c436ccda 100644 --- a/tdm/kfrontend/themer/tdmrect.h +++ b/tdm/kfrontend/themer/tdmrect.h @@ -32,7 +32,7 @@ */ class KdmRect : public KdmItem { - Q_OBJECT + TQ_OBJECT public: KdmRect( KdmItem *parent, const TQDomNode &node, const char *name = 0 ); diff --git a/tdm/kfrontend/themer/tdmthemer.h b/tdm/kfrontend/themer/tdmthemer.h index 785a116da..7b9cd2049 100644 --- a/tdm/kfrontend/themer/tdmthemer.h +++ b/tdm/kfrontend/themer/tdmthemer.h @@ -49,7 +49,7 @@ class TQEvent; class KdmThemer : public TQObject { - Q_OBJECT + TQ_OBJECT public: /* |