diff options
Diffstat (limited to 'src/editor.cpp')
-rw-r--r-- | src/editor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editor.cpp b/src/editor.cpp index caadb5e..f4a4276 100644 --- a/src/editor.cpp +++ b/src/editor.cpp @@ -53,8 +53,8 @@ using std::binary_search; class CalcResultLabel : public TQLabel { public: - CalcResultLabel(TQWidget *tqparent, const char *name, int WFlags) : - TQLabel(tqparent, name, WFlags) + CalcResultLabel(TQWidget *parent, const char *name, int WFlags) : + TQLabel(parent, name, WFlags) { } @@ -204,8 +204,8 @@ int EditorHighlighter::highlightParagraph ( const TQString & text, int ) -Editor::Editor( TQWidget* tqparent, const char* name ): - TQTextEdit( tqparent, name ) +Editor::Editor( TQWidget* parent, const char* name ): + TQTextEdit( parent, name ) { d = new Private; d->eval = 0; |