diff options
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 52bd636..f05c7bc 100644 --- a/src/notecontent.h +++ b/src/notecontent.h @@ -276,7 +276,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: AnimationContent(Note *parent, const TQString &fileName, bool lazyLoad = false); @@ -325,7 +325,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: FileContent(Note *parent, const TQString &fileName); @@ -379,7 +379,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: SoundContent(Note *parent, const TQString &fileName); @@ -411,7 +411,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: LinkContent(Note *parent, const KURL &url, const TQString &title, const TQString &icon, bool autoTitle, bool autoIcon); |