summaryrefslogtreecommitdiffstats
path: root/src/focusedwidgets.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit631d7b9b0878ca3842496b5719f9c5803335e150 (patch)
treed09fe0c8cd6edfd28c9c7947b0af60ccc75fbb8d /src/focusedwidgets.cpp
parent33f08e93132a53bf14f41f5f1e567eeea832b336 (diff)
downloadbasket-631d7b9b0878ca3842496b5719f9c5803335e150.tar.gz
basket-631d7b9b0878ca3842496b5719f9c5803335e150.zip
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
Diffstat (limited to 'src/focusedwidgets.cpp')
-rw-r--r--src/focusedwidgets.cpp20
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)
{
}