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 /tdeparts/tests | |
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 'tdeparts/tests')
-rw-r--r-- | tdeparts/tests/example.h | 2 | ||||
-rw-r--r-- | tdeparts/tests/ghostview.h | 2 | ||||
-rw-r--r-- | tdeparts/tests/normalktm.h | 2 | ||||
-rw-r--r-- | tdeparts/tests/notepad.h | 2 | ||||
-rw-r--r-- | tdeparts/tests/parts.h | 4 | ||||
-rw-r--r-- | tdeparts/tests/plugin_spellcheck.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/tdeparts/tests/example.h b/tdeparts/tests/example.h index 76541437d..9264bfa25 100644 --- a/tdeparts/tests/example.h +++ b/tdeparts/tests/example.h @@ -10,7 +10,7 @@ class TQWidget; class Shell : public KParts::MainWindow { - Q_OBJECT + TQ_OBJECT public: Shell(); virtual ~Shell(); diff --git a/tdeparts/tests/ghostview.h b/tdeparts/tests/ghostview.h index 2974ded5e..983813f27 100644 --- a/tdeparts/tests/ghostview.h +++ b/tdeparts/tests/ghostview.h @@ -5,7 +5,7 @@ class Shell : public KParts::MainWindow { - Q_OBJECT + TQ_OBJECT public: Shell(); virtual ~Shell(); diff --git a/tdeparts/tests/normalktm.h b/tdeparts/tests/normalktm.h index f60d490a6..962a71cc7 100644 --- a/tdeparts/tests/normalktm.h +++ b/tdeparts/tests/normalktm.h @@ -10,7 +10,7 @@ class TQWidget; class Shell : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: Shell(); virtual ~Shell(); diff --git a/tdeparts/tests/notepad.h b/tdeparts/tests/notepad.h index bd502599b..25d452fac 100644 --- a/tdeparts/tests/notepad.h +++ b/tdeparts/tests/notepad.h @@ -15,7 +15,7 @@ class TQMultiLineEdit; */ class NotepadPart : public KParts::ReadWritePart { - Q_OBJECT + TQ_OBJECT public: NotepadPart( TQWidget*, const char* widgetName, TQObject* parent, const char* name, diff --git a/tdeparts/tests/parts.h b/tdeparts/tests/parts.h index 37af4911e..b2e8d2ee9 100644 --- a/tdeparts/tests/parts.h +++ b/tdeparts/tests/parts.h @@ -11,7 +11,7 @@ class GUIActivateEvent; class Part1 : public KParts::ReadOnlyPart { - Q_OBJECT + TQ_OBJECT public: Part1( TQObject *parent, TQWidget * parentWidget ); virtual ~Part1(); @@ -26,7 +26,7 @@ protected: class Part2 : public KParts::Part { - Q_OBJECT + TQ_OBJECT public: Part2( TQObject *parent, TQWidget * parentWidget ); virtual ~Part2(); diff --git a/tdeparts/tests/plugin_spellcheck.h b/tdeparts/tests/plugin_spellcheck.h index d27966c0c..3c7506c5c 100644 --- a/tdeparts/tests/plugin_spellcheck.h +++ b/tdeparts/tests/plugin_spellcheck.h @@ -5,7 +5,7 @@ class PluginSpellCheck : public KParts::Plugin { - Q_OBJECT + TQ_OBJECT public: PluginSpellCheck( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() ); |