diff options
Diffstat (limited to 'src/noteedit.h')
-rw-r--r-- | src/noteedit.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/noteedit.h b/src/noteedit.h index f8cc4ef..d6fccda 100644 --- a/src/noteedit.h +++ b/src/noteedit.h @@ -95,7 +95,7 @@ class NoteEditor : public TQObject void mouseEnteredEditorWidget(); public: - static NoteEditor* editNoteContent(NoteContent *noteContent, TQWidget *tqparent); + static NoteEditor* editNoteContent(NoteContent *noteContent, TQWidget *parent); }; class TextEditor : public NoteEditor @@ -103,7 +103,7 @@ class TextEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - TextEditor(TextContent *textContent, TQWidget *tqparent); + TextEditor(TextContent *textContent, TQWidget *parent); ~TextEditor(); void validate(); void autoSave(bool toFileToo); @@ -116,7 +116,7 @@ class HtmlEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - HtmlEditor(HtmlContent *htmlContent, TQWidget *tqparent); + HtmlEditor(HtmlContent *htmlContent, TQWidget *parent); ~HtmlEditor(); void validate(); void autoSave(bool toFileToo); @@ -142,7 +142,7 @@ class ImageEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - ImageEditor(ImageContent *imageContent, TQWidget *tqparent); + ImageEditor(ImageContent *imageContent, TQWidget *parent); }; class AnimationEditor : public NoteEditor @@ -150,7 +150,7 @@ class AnimationEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - AnimationEditor(AnimationContent *animationContent, TQWidget *tqparent); + AnimationEditor(AnimationContent *animationContent, TQWidget *parent); }; class FileEditor : public NoteEditor @@ -158,7 +158,7 @@ class FileEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - FileEditor(FileContent *fileContent, TQWidget *tqparent); + FileEditor(FileContent *fileContent, TQWidget *parent); ~FileEditor(); void validate(); void autoSave(bool toFileToo); @@ -171,7 +171,7 @@ class LinkEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - LinkEditor(LinkContent *linkContent, TQWidget *tqparent); + LinkEditor(LinkContent *linkContent, TQWidget *parent); }; class LauncherEditor : public NoteEditor @@ -179,7 +179,7 @@ class LauncherEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - LauncherEditor(LauncherContent *launcherContent, TQWidget *tqparent); + LauncherEditor(LauncherContent *launcherContent, TQWidget *parent); }; class ColorEditor : public NoteEditor @@ -187,7 +187,7 @@ class ColorEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - ColorEditor(ColorContent *colorContent, TQWidget *tqparent); + ColorEditor(ColorContent *colorContent, TQWidget *parent); }; class UnknownEditor : public NoteEditor @@ -195,7 +195,7 @@ class UnknownEditor : public NoteEditor Q_OBJECT TQ_OBJECT public: - UnknownEditor(UnknownContent *unknownContent, TQWidget *tqparent); + UnknownEditor(UnknownContent *unknownContent, TQWidget *parent); }; /** TQLineEdit behavior: @@ -208,7 +208,7 @@ class DebuggedLineEdit : public TQLineEdit Q_OBJECT TQ_OBJECT public: - DebuggedLineEdit(const TQString &text, TQWidget *tqparent = 0); + DebuggedLineEdit(const TQString &text, TQWidget *parent = 0); ~DebuggedLineEdit(); protected: void keyPressEvent(TQKeyEvent *event); @@ -222,7 +222,7 @@ class LinkEditDialog : public KDialogBase Q_OBJECT TQ_OBJECT public: - LinkEditDialog(LinkContent *contentNote, TQWidget *tqparent = 0); + LinkEditDialog(LinkContent *contentNote, TQWidget *parent = 0); ~LinkEditDialog(); void polish(); protected slots: @@ -251,7 +251,7 @@ class LauncherEditDialog : public KDialogBase Q_OBJECT TQ_OBJECT public: - LauncherEditDialog(LauncherContent *contentNote, TQWidget *tqparent = 0); + LauncherEditDialog(LauncherContent *contentNote, TQWidget *parent = 0); ~LauncherEditDialog(); void polish(); protected slots: |