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 3e88d3f..a422fd3 100644 --- a/src/noteedit.h +++ b/src/noteedit.h @@ -60,7 +60,7 @@ class FocusedColorCombo; */ class NoteEditor : public TQObject { - Q_OBJECT + TQ_OBJECT public: NoteEditor(NoteContent *noteContent); @@ -100,7 +100,7 @@ class NoteEditor : public TQObject class TextEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: TextEditor(TextContent *textContent, TQWidget *parent); @@ -113,7 +113,7 @@ class TextEditor : public NoteEditor class HtmlEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: HtmlEditor(HtmlContent *htmlContent, TQWidget *parent); @@ -139,7 +139,7 @@ class HtmlEditor : public NoteEditor class ImageEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: ImageEditor(ImageContent *imageContent, TQWidget *parent); @@ -147,7 +147,7 @@ class ImageEditor : public NoteEditor class AnimationEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: AnimationEditor(AnimationContent *animationContent, TQWidget *parent); @@ -155,7 +155,7 @@ class AnimationEditor : public NoteEditor class FileEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: FileEditor(FileContent *fileContent, TQWidget *parent); @@ -168,7 +168,7 @@ class FileEditor : public NoteEditor class LinkEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: LinkEditor(LinkContent *linkContent, TQWidget *parent); @@ -176,7 +176,7 @@ class LinkEditor : public NoteEditor class LauncherEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: LauncherEditor(LauncherContent *launcherContent, TQWidget *parent); @@ -184,7 +184,7 @@ class LauncherEditor : public NoteEditor class ColorEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: ColorEditor(ColorContent *colorContent, TQWidget *parent); @@ -192,7 +192,7 @@ class ColorEditor : public NoteEditor class UnknownEditor : public NoteEditor { - Q_OBJECT + TQ_OBJECT public: UnknownEditor(UnknownContent *unknownContent, TQWidget *parent); @@ -205,7 +205,7 @@ class UnknownEditor : public NoteEditor */ class DebuggedLineEdit : public TQLineEdit { - Q_OBJECT + TQ_OBJECT public: DebuggedLineEdit(const TQString &text, TQWidget *parent = 0); @@ -219,7 +219,7 @@ class DebuggedLineEdit : public TQLineEdit */ class LinkEditDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: LinkEditDialog(LinkContent *contentNote, TQWidget *parent = 0); @@ -248,7 +248,7 @@ class LinkEditDialog : public KDialogBase */ class LauncherEditDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: LauncherEditDialog(LauncherContent *contentNote, TQWidget *parent = 0); @@ -271,7 +271,7 @@ class LauncherEditDialog : public KDialogBase */ class InlineEditors : public TQObject { - Q_OBJECT + TQ_OBJECT public: InlineEditors(); |