From 631d7b9b0878ca3842496b5719f9c5803335e150 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/basket@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/focusedwidgets.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/focusedwidgets.cpp') 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) { } -- cgit v1.2.1