summaryrefslogtreecommitdiffstats
path: root/src/notecontent.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-02-17 15:58:45 -0600
committerTimothy Pearson <[email protected]>2012-02-17 15:58:45 -0600
commit33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0 (patch)
tree02797061cba5f5a5caf94fa5c5f94e13ad068084 /src/notecontent.h
parent81c05336d333ef966af8f8a4663898315e460685 (diff)
downloadbasket-33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0.tar.gz
basket-33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/notecontent.h')
-rw-r--r--src/notecontent.h8
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);