From cd4b0ac22608120ad003f575a1640e1ddc7703df 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 --- 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 e28a85254..38b5069ce 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 e5f5a8f4c..bd489ed6f 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 a132c59e8..575e98355 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 cd3cd7908..825f44e00 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 11ea6ccff..af79349e8 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 46513c9c6..d0ad6a235 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 1485209fd..023adcd77 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 9e2045b16..19b583a51 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 81acca899..235b96791 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 0a765dcbd..20fe6372e 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 41348cc21..9ef87f2f9 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 5bc82c443..c0a9f0448 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 e1289cd8e..a00073277 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 57d631d77..3de3e4851 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 d6cd31b02..7f68e9c41 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 7d76d4885..df0b02e01 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 9b755d4ab..3a885e6c7 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 a1a3bc895..78b3226f3 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 cdf7bccfa..7c9efa88b 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 01a4f6833..f3d5b4f8d 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 2f8f2d8e1..5a97bb6b4 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 512586944..fd22d5abd 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 3a23f4478..f55500fa9 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 fc5f9e994..9c2841324 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 616415364..8e5b983c1 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 bb1f50e00..5040a1eb0 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.1