diff options
author | Michele Calgaro <[email protected]> | 2023-07-24 21:27:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-24 21:29:49 +0900 |
commit | 980849e7c8ed2ebbde33da076c0914bd1fcb8db2 (patch) | |
tree | 91dd2782588796a15b4cc53060a3ed4b342925e5 /lib/plugin.h | |
parent | 83e4ace78c432655f6e969096480caf628377a2a (diff) | |
download | kpilot-980849e7c8ed2ebbde33da076c0914bd1fcb8db2.tar.gz kpilot-980849e7c8ed2ebbde33da076c0914bd1fcb8db2.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 6508b043abf98d06b79802c637e65e403365eac3)
Diffstat (limited to 'lib/plugin.h')
-rw-r--r-- | lib/plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/plugin.h b/lib/plugin.h index 37a88ec..f3012c4 100644 --- a/lib/plugin.h +++ b/lib/plugin.h @@ -77,7 +77,7 @@ namespace Pilot */ class KDE_EXPORT ConduitConfigBase : public TQObject { -Q_OBJECT +TQ_OBJECT public: /** @@ -260,7 +260,7 @@ private: class KDE_EXPORT ConduitAction : public SyncAction { -Q_OBJECT +TQ_OBJECT public: @@ -368,7 +368,7 @@ private: */ class ConduitProxy : public ConduitAction { -Q_OBJECT +TQ_OBJECT public: @@ -420,7 +420,7 @@ namespace PluginUtility KDE_EXPORT * <pre> * class KPilotPlugin : public KLibFactory * { -* Q_OBJECT +* TQ_OBJECT * * public: |