diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 19:44:38 +0900 |
commit | 8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch) | |
tree | 3c700b8550635d12c771ff0a1cb310a40a88e4b7 /tdespell2 | |
parent | a91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff) | |
download | tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdespell2')
-rw-r--r-- | tdespell2/backgroundchecker.h | 2 | ||||
-rw-r--r-- | tdespell2/backgroundengine.h | 2 | ||||
-rw-r--r-- | tdespell2/broker.h | 2 | ||||
-rw-r--r-- | tdespell2/client.h | 2 | ||||
-rw-r--r-- | tdespell2/defaultdictionary.h | 2 | ||||
-rw-r--r-- | tdespell2/plugins/aspell/tdespell_aspellclient.h | 2 | ||||
-rw-r--r-- | tdespell2/plugins/hspell/tdespell_hspellclient.h | 2 | ||||
-rw-r--r-- | tdespell2/plugins/ispell/tdespell_ispellclient.h | 2 | ||||
-rw-r--r-- | tdespell2/tests/backgroundtest.h | 2 | ||||
-rw-r--r-- | tdespell2/tests/test_dialog.h | 2 | ||||
-rw-r--r-- | tdespell2/ui/configdialog.h | 2 | ||||
-rw-r--r-- | tdespell2/ui/configwidget.h | 2 | ||||
-rw-r--r-- | tdespell2/ui/dialog.h | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/tdespell2/backgroundchecker.h b/tdespell2/backgroundchecker.h index 84deea5c8..6f9163b26 100644 --- a/tdespell2/backgroundchecker.h +++ b/tdespell2/backgroundchecker.h @@ -48,7 +48,7 @@ namespace KSpell2 */ class KDE_EXPORT BackgroundChecker : public TQObject { - Q_OBJECT + TQ_OBJECT public: BackgroundChecker( const Broker::Ptr& broker, TQObject *parent =0, const char *name =0 ); diff --git a/tdespell2/backgroundengine.h b/tdespell2/backgroundengine.h index 9ddbe7289..365d3ebbf 100644 --- a/tdespell2/backgroundengine.h +++ b/tdespell2/backgroundengine.h @@ -33,7 +33,7 @@ namespace KSpell2 class Dictionary; class BackgroundEngine : public TQObject { - Q_OBJECT + TQ_OBJECT public: BackgroundEngine( TQObject *parent ); ~BackgroundEngine(); diff --git a/tdespell2/broker.h b/tdespell2/broker.h index f4029c487..2ccc63635 100644 --- a/tdespell2/broker.h +++ b/tdespell2/broker.h @@ -47,7 +47,7 @@ namespace KSpell2 class KDE_EXPORT Broker : public TQObject, public TDEShared { - Q_OBJECT + TQ_OBJECT public: typedef TDESharedPtr<Broker> Ptr; /** diff --git a/tdespell2/client.h b/tdespell2/client.h index 07f6fce6e..c115b3847 100644 --- a/tdespell2/client.h +++ b/tdespell2/client.h @@ -39,7 +39,7 @@ namespace KSpell2 */ class KDE_EXPORT Client : public TQObject { - Q_OBJECT + TQ_OBJECT public: Client( TQObject *parent = 0, const char *name=0 ); diff --git a/tdespell2/defaultdictionary.h b/tdespell2/defaultdictionary.h index 1a0090751..f3ee83339 100644 --- a/tdespell2/defaultdictionary.h +++ b/tdespell2/defaultdictionary.h @@ -32,7 +32,7 @@ namespace KSpell2 class DefaultDictionary : public TQObject, public Dictionary { - Q_OBJECT + TQ_OBJECT public: DefaultDictionary( const TQString& lang, Broker *broker ); ~DefaultDictionary(); diff --git a/tdespell2/plugins/aspell/tdespell_aspellclient.h b/tdespell2/plugins/aspell/tdespell_aspellclient.h index 1384b0242..9a71bfa69 100644 --- a/tdespell2/plugins/aspell/tdespell_aspellclient.h +++ b/tdespell2/plugins/aspell/tdespell_aspellclient.h @@ -33,7 +33,7 @@ using KSpell2::Dictionary; class ASpellClient : public KSpell2::Client { - Q_OBJECT + TQ_OBJECT public: ASpellClient( TQObject *parent, const char *name, const TQStringList & /* args */ ); ~ASpellClient(); diff --git a/tdespell2/plugins/hspell/tdespell_hspellclient.h b/tdespell2/plugins/hspell/tdespell_hspellclient.h index 00a89749e..a18928900 100644 --- a/tdespell2/plugins/hspell/tdespell_hspellclient.h +++ b/tdespell2/plugins/hspell/tdespell_hspellclient.h @@ -37,7 +37,7 @@ using KSpell2::Dictionary; class HSpellClient : public KSpell2::Client { - Q_OBJECT + TQ_OBJECT public: HSpellClient( TQObject *parent, const char *name, const TQStringList & /* args */ ); ~HSpellClient(); diff --git a/tdespell2/plugins/ispell/tdespell_ispellclient.h b/tdespell2/plugins/ispell/tdespell_ispellclient.h index 7deee7de8..b15453bd3 100644 --- a/tdespell2/plugins/ispell/tdespell_ispellclient.h +++ b/tdespell2/plugins/ispell/tdespell_ispellclient.h @@ -33,7 +33,7 @@ using KSpell2::Dictionary; class ISpellClient : public KSpell2::Client { - Q_OBJECT + TQ_OBJECT public: ISpellClient( TQObject *parent, const char *name, const TQStringList & /* args */ ); ~ISpellClient(); diff --git a/tdespell2/tests/backgroundtest.h b/tdespell2/tests/backgroundtest.h index 2f08e9ce0..1fb16fd60 100644 --- a/tdespell2/tests/backgroundtest.h +++ b/tdespell2/tests/backgroundtest.h @@ -28,7 +28,7 @@ class BackgroundTest : public TQObject { - Q_OBJECT + TQ_OBJECT public: BackgroundTest(); diff --git a/tdespell2/tests/test_dialog.h b/tdespell2/tests/test_dialog.h index e8a6cf970..924c1281b 100644 --- a/tdespell2/tests/test_dialog.h +++ b/tdespell2/tests/test_dialog.h @@ -28,7 +28,7 @@ class TestDialog : public TQObject { - Q_OBJECT + TQ_OBJECT public: TestDialog(); diff --git a/tdespell2/ui/configdialog.h b/tdespell2/ui/configdialog.h index 43a785490..4147c2f84 100644 --- a/tdespell2/ui/configdialog.h +++ b/tdespell2/ui/configdialog.h @@ -28,7 +28,7 @@ namespace KSpell2 class Broker; class ConfigDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: ConfigDialog( Broker *broker, TQWidget *parent ); diff --git a/tdespell2/ui/configwidget.h b/tdespell2/ui/configwidget.h index 2f65ed20e..071e83272 100644 --- a/tdespell2/ui/configwidget.h +++ b/tdespell2/ui/configwidget.h @@ -29,7 +29,7 @@ namespace KSpell2 class Broker; class KDE_EXPORT ConfigWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: ConfigWidget( Broker *broker, TQWidget *parent, const char *name =0 ); ~ConfigWidget(); diff --git a/tdespell2/ui/dialog.h b/tdespell2/ui/dialog.h index d07ddacce..a531408bf 100644 --- a/tdespell2/ui/dialog.h +++ b/tdespell2/ui/dialog.h @@ -29,7 +29,7 @@ namespace KSpell2 class BackgroundChecker; class KDE_EXPORT Dialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: Dialog( BackgroundChecker *checker, TQWidget *parent, const char *name=0 ); |