diff options
Diffstat (limited to 'src/focusedwidgets.cpp')
-rw-r--r-- | src/focusedwidgets.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/focusedwidgets.cpp b/src/focusedwidgets.cpp index d50c532..ac46eec 100644 --- a/src/focusedwidgets.cpp +++ b/src/focusedwidgets.cpp @@ -35,8 +35,8 @@ /** class FocusedTextEdit */ -FocusedTextEdit::FocusedTextEdit(bool disableUpdatesOnKeyPress, TQWidget *tqparent, const char *name) - : KTextEdit(tqparent, name), +FocusedTextEdit::FocusedTextEdit(bool disableUpdatesOnKeyPress, TQWidget *parent, const char *name) + : KTextEdit(parent, name), m_disableUpdatesOnKeyPress(disableUpdatesOnKeyPress) { setWFlags(TQt::WNoAutoErase); // Does not work, we still need the disableUpdatesOnKeyPress hack! @@ -206,8 +206,8 @@ TQPopupMenu* FocusedTextEdit::createPopupMenu(const TQPoint &pos) /** class FocusedColorCombo: */ -FocusedColorCombo::FocusedColorCombo(TQWidget *tqparent, const char *name) - : KColorCombo(tqparent, name) +FocusedColorCombo::FocusedColorCombo(TQWidget *parent, const char *name) + : KColorCombo(parent, name) { } @@ -227,8 +227,8 @@ void FocusedColorCombo::keyPressEvent(TQKeyEvent *event) /** class FocusedFontCombo: */ -FocusedFontCombo::FocusedFontCombo(TQWidget *tqparent, const char *name) - : KFontCombo(tqparent, name) +FocusedFontCombo::FocusedFontCombo(TQWidget *parent, const char *name) + : KFontCombo(parent, name) { } @@ -248,8 +248,8 @@ void FocusedFontCombo::keyPressEvent(TQKeyEvent *event) /** class FocusedComboBox: */ -FocusedComboBox::FocusedComboBox(TQWidget *tqparent, const char *name) - : KComboBox(tqparent, name) +FocusedComboBox::FocusedComboBox(TQWidget *parent, const char *name) + : KComboBox(parent, name) { } @@ -269,8 +269,8 @@ void FocusedComboBox::keyPressEvent(TQKeyEvent *event) /** class FocusedLineEdit: */ -FocusedLineEdit::FocusedLineEdit(TQWidget *tqparent, const char *name) - : KLineEdit(tqparent, name) +FocusedLineEdit::FocusedLineEdit(TQWidget *parent, const char *name) + : KLineEdit(parent, name) { } |