From efa55080160c7b88c4052c2567439c324f646614 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 15:07:09 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro (cherry picked from commit cd4b0ac22608120ad003f575a1640e1ddc7703df) --- korn/accountmanager.h | 2 +- korn/boxcontainer.h | 2 +- korn/boxcontaineritem.h | 2 +- korn/dcopdrop.h | 2 +- korn/dockedcontainer.h | 2 +- korn/dockeditem.h | 2 +- korn/hvcontainer.h | 2 +- korn/hvitem.h | 2 +- korn/keditlistboxman.h | 2 +- korn/kornaccountcfgimpl.h | 2 +- korn/kornapp.h | 2 +- korn/kornboxcfgimpl.h | 2 +- korn/korncfgimpl.h | 2 +- korn/kornshell.h | 2 +- korn/label.h | 2 +- korn/maildlg.h | 2 +- korn/maildrop.h | 2 +- korn/polldrop.h | 2 +- korn/subjectsdlg.h | 2 +- korn/systemtray.h | 2 +- korn/tdeio.h | 2 +- korn/tdeio_count.h | 2 +- korn/tdeio_delete.h | 2 +- korn/tdeio_read.h | 2 +- korn/tdeio_single_subject.h | 2 +- korn/tdeio_subjects.h | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) (limited to 'korn') diff --git a/korn/accountmanager.h b/korn/accountmanager.h index e28a8525..38b5069c 100644 --- a/korn/accountmanager.h +++ b/korn/accountmanager.h @@ -39,7 +39,7 @@ template< class T, class W > class TQMap; * and it communicate with the boxes. */ class AccountManager : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/boxcontainer.h b/korn/boxcontainer.h index e5f5a8f4..bd489ed6 100644 --- a/korn/boxcontainer.h +++ b/korn/boxcontainer.h @@ -32,7 +32,7 @@ class TDEConfig; * where BoxContainerItems can be placed. BoxContainerItems are the boxes you see. */ class BoxContainer : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/boxcontaineritem.h b/korn/boxcontaineritem.h index a132c59e..575e9835 100644 --- a/korn/boxcontaineritem.h +++ b/korn/boxcontaineritem.h @@ -42,7 +42,7 @@ class TQString; */ class BoxContainerItem : public AccountManager, public DCOPObject { - Q_OBJECT + TQ_OBJECT // K_DCOP public: diff --git a/korn/dcopdrop.h b/korn/dcopdrop.h index cd3cd790..825f44e0 100644 --- a/korn/dcopdrop.h +++ b/korn/dcopdrop.h @@ -38,7 +38,7 @@ class TQString; * This class handles all new messages which are comming in through DCOP. */ class DCOPDrop : public KMailDrop -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/dockedcontainer.h b/korn/dockedcontainer.h index 11ea6ccf..af79349e 100644 --- a/korn/dockedcontainer.h +++ b/korn/dockedcontainer.h @@ -28,7 +28,7 @@ class BoxContainerItem; * The only thing it does is creating TQt::DocketItems. */ class DockedContainer : public BoxContainer -{ Q_OBJECT +{ TQ_OBJECT public: DockedContainer( TQObject * parent = 0, const char * name = 0 ); diff --git a/korn/dockeditem.h b/korn/dockeditem.h index 46513c9c..d0ad6a23 100644 --- a/korn/dockeditem.h +++ b/korn/dockeditem.h @@ -35,7 +35,7 @@ class TQPixmap; * @author Mart Kelder */ class DockedItem : public BoxContainerItem -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/hvcontainer.h b/korn/hvcontainer.h index 1485209f..023adcd7 100644 --- a/korn/hvcontainer.h +++ b/korn/hvcontainer.h @@ -30,7 +30,7 @@ class TQHBox; */ class HVContainer : public BoxContainer -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/hvitem.h b/korn/hvitem.h index 9e2045b1..19b583a5 100644 --- a/korn/hvitem.h +++ b/korn/hvitem.h @@ -30,7 +30,7 @@ class Label; * Item for a horizontal or vertical displayed window. */ class HVItem : public BoxContainerItem -{ Q_OBJECT +{ TQ_OBJECT public: HVItem( TQWidget *parent = 0, const char *name = 0 ); diff --git a/korn/keditlistboxman.h b/korn/keditlistboxman.h index 81acca89..235b9679 100644 --- a/korn/keditlistboxman.h +++ b/korn/keditlistboxman.h @@ -32,7 +32,7 @@ class TQWidget; * @author Mart Kelder (mart.kde@hccnet.nl) */ class KEditListBoxManager : public KEditListBox -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/kornaccountcfgimpl.h b/korn/kornaccountcfgimpl.h index 0a765dcb..20fe6372 100644 --- a/korn/kornaccountcfgimpl.h +++ b/korn/kornaccountcfgimpl.h @@ -36,7 +36,7 @@ template< class T > class TQPtrList; template< class T > class TQPtrVector; class KornAccountCfgImpl : public KornAccountCfg -{ Q_OBJECT +{ TQ_OBJECT public: KornAccountCfgImpl( TQWidget * parent = 0, const char * name = 0 ); diff --git a/korn/kornapp.h b/korn/kornapp.h index 41348cc2..9ef87f2f 100644 --- a/korn/kornapp.h +++ b/korn/kornapp.h @@ -16,7 +16,7 @@ class KornShell; */ class KornApp : public KUniqueApplication { - Q_OBJECT + TQ_OBJECT public: diff --git a/korn/kornboxcfgimpl.h b/korn/kornboxcfgimpl.h index 5bc82c44..c0a9f044 100644 --- a/korn/kornboxcfgimpl.h +++ b/korn/kornboxcfgimpl.h @@ -30,7 +30,7 @@ class TQString; class TQWidget; class KornBoxCfgImpl : public KornBoxCfg -{ Q_OBJECT +{ TQ_OBJECT public: KornBoxCfgImpl( TQWidget *parent, const char * name ); diff --git a/korn/korncfgimpl.h b/korn/korncfgimpl.h index e1289cd8..a0007327 100644 --- a/korn/korncfgimpl.h +++ b/korn/korncfgimpl.h @@ -28,7 +28,7 @@ class TQObject; class TQString; class KornCfgImpl : public KornCfgWidget -{ Q_OBJECT +{ TQ_OBJECT public: KornCfgImpl( TQWidget * parent = 0, const char * name = 0 ); diff --git a/korn/kornshell.h b/korn/kornshell.h index 57d631d7..3de3e485 100644 --- a/korn/kornshell.h +++ b/korn/kornshell.h @@ -30,7 +30,7 @@ class TDEConfig; * This is a rewritten KornShell class. It is rewritten because the depending classes changed. */ class KornShell : public TQWidget -{ Q_OBJECT +{ TQ_OBJECT public: KornShell( TQWidget * parent = 0, const char * name = 0 ); diff --git a/korn/label.h b/korn/label.h index d6cd31b0..7f68e9c4 100644 --- a/korn/label.h +++ b/korn/label.h @@ -26,7 +26,7 @@ * A simple overriding of the TQLabel class to get a mouseButtonPressed() signal */ class Label : public TQLabel -{ Q_OBJECT +{ TQ_OBJECT public: Label( TQWidget * parent = 0, const char * name = 0 ) : TQLabel( parent, name ) {} diff --git a/korn/maildlg.h b/korn/maildlg.h index 7d76d488..df0b02e0 100644 --- a/korn/maildlg.h +++ b/korn/maildlg.h @@ -16,7 +16,7 @@ class TQString; */ class KornMailDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT /** diff --git a/korn/maildrop.h b/korn/maildrop.h index 9b755d4a..3a885e6c 100644 --- a/korn/maildrop.h +++ b/korn/maildrop.h @@ -29,7 +29,7 @@ template< class T, class R > class TQMap; */ class KMailDrop : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/korn/polldrop.h b/korn/polldrop.h index a1a3bc89..78b3226f 100644 --- a/korn/polldrop.h +++ b/korn/polldrop.h @@ -20,7 +20,7 @@ class TQTimerEvent; */ class KPollableDrop : public KMailDrop { - Q_OBJECT + TQ_OBJECT public: static const char *PollConfigKey; diff --git a/korn/subjectsdlg.h b/korn/subjectsdlg.h index cdf7bccf..7c9efa88 100644 --- a/korn/subjectsdlg.h +++ b/korn/subjectsdlg.h @@ -23,7 +23,7 @@ template< class T > class TQPtrList; */ class KornSubjectsDlg: public KDialogBase { - Q_OBJECT + TQ_OBJECT /** diff --git a/korn/systemtray.h b/korn/systemtray.h index 01a4f683..f3d5b4f8 100644 --- a/korn/systemtray.h +++ b/korn/systemtray.h @@ -30,7 +30,7 @@ class TQWidget; * @author Mart Kelder */ class SystemTray : public KSystemTray -{ Q_OBJECT +{ TQ_OBJECT public: /** diff --git a/korn/tdeio.h b/korn/tdeio.h index 2f8f2d8e..5a97bb6b 100644 --- a/korn/tdeio.h +++ b/korn/tdeio.h @@ -49,7 +49,7 @@ namespace TDEIO { class Job; class MetaData; class Slave; class TransferJob; } */ class KKioDrop : public KPollableDrop { - Q_OBJECT + TQ_OBJECT private: KURL *_kurl; diff --git a/korn/tdeio_count.h b/korn/tdeio_count.h index 51258694..fd22d5ab 100644 --- a/korn/tdeio_count.h +++ b/korn/tdeio_count.h @@ -42,7 +42,7 @@ class KURL; class TQString; class TDEIO_Count : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: TDEIO_Count( TQObject * parent = 0, const char * name = 0 ); diff --git a/korn/tdeio_delete.h b/korn/tdeio_delete.h index 3a23f447..f55500fa 100644 --- a/korn/tdeio_delete.h +++ b/korn/tdeio_delete.h @@ -35,7 +35,7 @@ namespace TDEIO { class MetaData; class Job; class Slave; } template class TQPtrList; class TDEIO_Delete : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: //constructors diff --git a/korn/tdeio_read.h b/korn/tdeio_read.h index fc5f9e99..9c284132 100644 --- a/korn/tdeio_read.h +++ b/korn/tdeio_read.h @@ -33,7 +33,7 @@ class TDEIO_Protocol; class TQString; class TDEIO_Read : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: TDEIO_Read( TQObject * parent = 0, const char * name = 0 ); diff --git a/korn/tdeio_single_subject.h b/korn/tdeio_single_subject.h index 61641536..8e5b983c 100644 --- a/korn/tdeio_single_subject.h +++ b/korn/tdeio_single_subject.h @@ -33,7 +33,7 @@ class TDEIO_Protocol; class TQString; class TDEIO_Single_Subject : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: TDEIO_Single_Subject( TQObject * parent, const char * name, KURL &, TDEIO::MetaData &, const TDEIO_Protocol *, diff --git a/korn/tdeio_subjects.h b/korn/tdeio_subjects.h index bb1f50e0..5040a1eb 100644 --- a/korn/tdeio_subjects.h +++ b/korn/tdeio_subjects.h @@ -35,7 +35,7 @@ class TQString; template class TQValueList; class TDEIO_Subjects : public TQObject -{ Q_OBJECT +{ TQ_OBJECT public: TDEIO_Subjects( TQObject * parent, const char * name ); -- cgit v1.2.3