diff options
author | Michele Calgaro <[email protected]> | 2023-07-24 21:27:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-24 21:27:35 +0900 |
commit | 6508b043abf98d06b79802c637e65e403365eac3 (patch) | |
tree | cf38d8601fbf1e5ef2885d0bb99d97226721d51a /lib/plugin.h | |
parent | 2c4375efc4964d9d3857bf27472c0e672b384d8e (diff) | |
download | kpilot-6508b043abf98d06b79802c637e65e403365eac3.tar.gz kpilot-6508b043abf98d06b79802c637e65e403365eac3.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
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: |