diff options
Diffstat (limited to 'src/libgui/text_editor.cpp')
-rw-r--r-- | src/libgui/text_editor.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libgui/text_editor.cpp b/src/libgui/text_editor.cpp index eb9d16f..e7f0382 100644 --- a/src/libgui/text_editor.cpp +++ b/src/libgui/text_editor.cpp @@ -42,8 +42,8 @@ TQPixmap TextEditor::pixmap(Breakpoint::MarkType type) return SmallIcon(MARK_TYPE_DATA[type].pixmap); } -TextEditor::TextEditor(bool withDebugger, TQWidget *tqparent, const char *name) - : Editor(tqparent, name), _view(0) +TextEditor::TextEditor(bool withDebugger, TQWidget *parent, const char *name) + : Editor(parent, name), _view(0) { KLibFactory *factory = KLibLoader::self()->factory("libkatepart"); if ( factory==0 ) qFatal("Could not find katepart"); @@ -321,12 +321,12 @@ void TextEditor::populateList() #endif //----------------------------------------------------------------------------- -SimpleTextEditor::SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *tqparent, const char *name) - : TextEditor(withDebugger, tqparent, name), _type(type), _file(_sview) +SimpleTextEditor::SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *parent, const char *name) + : TextEditor(withDebugger, parent, name), _type(type), _file(_sview) {} -SimpleTextEditor::SimpleTextEditor(bool withDebugger, TQWidget *tqparent, const char *name) - : TextEditor(withDebugger, tqparent, name), _type(PURL::Nb_FileTypes), _file(_sview) +SimpleTextEditor::SimpleTextEditor(bool withDebugger, TQWidget *parent, const char *name) + : TextEditor(withDebugger, parent, name), _type(PURL::Nb_FileTypes), _file(_sview) {} bool SimpleTextEditor::open(const PURL::Url &url) |