diff options
Diffstat (limited to 'src/noteedit.h')
-rw-r--r-- | src/noteedit.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/noteedit.h b/src/noteedit.h index d6fccda..449a620 100644 --- a/src/noteedit.h +++ b/src/noteedit.h @@ -61,7 +61,7 @@ class FocusedColorCombo; class NoteEditor : public TQObject { Q_OBJECT - TQ_OBJECT + public: NoteEditor(NoteContent *noteContent); bool isEmpty() { return m_isEmpty; } @@ -101,7 +101,7 @@ class NoteEditor : public TQObject class TextEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: TextEditor(TextContent *textContent, TQWidget *parent); ~TextEditor(); @@ -114,7 +114,7 @@ class TextEditor : public NoteEditor class HtmlEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: HtmlEditor(HtmlContent *htmlContent, TQWidget *parent); ~HtmlEditor(); @@ -140,7 +140,7 @@ class HtmlEditor : public NoteEditor class ImageEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: ImageEditor(ImageContent *imageContent, TQWidget *parent); }; @@ -148,7 +148,7 @@ class ImageEditor : public NoteEditor class AnimationEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: AnimationEditor(AnimationContent *animationContent, TQWidget *parent); }; @@ -156,7 +156,7 @@ class AnimationEditor : public NoteEditor class FileEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: FileEditor(FileContent *fileContent, TQWidget *parent); ~FileEditor(); @@ -169,7 +169,7 @@ class FileEditor : public NoteEditor class LinkEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: LinkEditor(LinkContent *linkContent, TQWidget *parent); }; @@ -177,7 +177,7 @@ class LinkEditor : public NoteEditor class LauncherEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: LauncherEditor(LauncherContent *launcherContent, TQWidget *parent); }; @@ -185,7 +185,7 @@ class LauncherEditor : public NoteEditor class ColorEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: ColorEditor(ColorContent *colorContent, TQWidget *parent); }; @@ -193,7 +193,7 @@ class ColorEditor : public NoteEditor class UnknownEditor : public NoteEditor { Q_OBJECT - TQ_OBJECT + public: UnknownEditor(UnknownContent *unknownContent, TQWidget *parent); }; @@ -206,7 +206,7 @@ class UnknownEditor : public NoteEditor class DebuggedLineEdit : public TQLineEdit { Q_OBJECT - TQ_OBJECT + public: DebuggedLineEdit(const TQString &text, TQWidget *parent = 0); ~DebuggedLineEdit(); @@ -220,7 +220,7 @@ class DebuggedLineEdit : public TQLineEdit class LinkEditDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: LinkEditDialog(LinkContent *contentNote, TQWidget *parent = 0); ~LinkEditDialog(); @@ -249,7 +249,7 @@ class LinkEditDialog : public KDialogBase class LauncherEditDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: LauncherEditDialog(LauncherContent *contentNote, TQWidget *parent = 0); ~LauncherEditDialog(); @@ -272,7 +272,7 @@ class LauncherEditDialog : public KDialogBase class InlineEditors : public TQObject { Q_OBJECT - TQ_OBJECT + public: InlineEditors(); ~InlineEditors(); |