diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:35:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-24 20:32:23 +0900 |
commit | 0cb23300070f6984b4f976f1c92984399a8aaa10 (patch) | |
tree | 63f2bcf00415116ba1d3a137509e71a451d3c7aa /src/notecontent.h | |
parent | 7c310957e67e961743ac0e72ea12205b504cd7d9 (diff) | |
download | basket-0cb23300070f6984b4f976f1c92984399a8aaa10.tar.gz basket-0cb23300070f6984b4f976f1c92984399a8aaa10.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit af97112a1a1c815e48080046e495510f41507206)
Diffstat (limited to 'src/notecontent.h')
-rw-r--r-- | src/notecontent.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/notecontent.h b/src/notecontent.h index 00f233b..ef9da86 100644 --- a/src/notecontent.h +++ b/src/notecontent.h @@ -275,7 +275,7 @@ class ImageContent : public NoteContent */ class AnimationContent : public TQObject, public NoteContent // TQObject to be able to receive TQMovie signals { - Q_OBJECT + TQ_OBJECT public: // Constructor and destructor: @@ -324,7 +324,7 @@ class AnimationContent : public TQObject, public NoteContent // TQObject to be a */ class FileContent : public TQObject, public NoteContent { - Q_OBJECT + TQ_OBJECT public: // Constructor and destructor: @@ -378,7 +378,7 @@ class FileContent : public TQObject, public NoteContent */ class SoundContent : public FileContent // A sound is a file with just a bit different user interaction { - Q_OBJECT + TQ_OBJECT public: // Constructor and destructor: @@ -410,7 +410,7 @@ class SoundContent : public FileContent // A sound is a file with just a bit dif */ class LinkContent : public TQObject, public NoteContent { - Q_OBJECT + TQ_OBJECT public: // Constructor and destructor: |