summaryrefslogtreecommitdiffstats
path: root/kaddressbook/typecombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/typecombo.h')
-rw-r--r--kaddressbook/typecombo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kaddressbook/typecombo.h b/kaddressbook/typecombo.h
index 29266fa82..2ff6591c7 100644
--- a/kaddressbook/typecombo.h
+++ b/kaddressbook/typecombo.h
@@ -37,7 +37,7 @@ class TypeCombo : public KComboBox
typedef typename T::List List;
typedef typename T::List::Iterator Iterator;
- TypeCombo( List &list, TQWidget *tqparent, const char *name = 0 );
+ TypeCombo( List &list, TQWidget *parent, const char *name = 0 );
void setLineEdit( TQLineEdit *edit ) { mLineEdit = edit; }
TQLineEdit *lineEdit() const { return mLineEdit; }
@@ -62,9 +62,9 @@ class TypeCombo : public KComboBox
};
template <class T>
-TypeCombo<T>::TypeCombo( TypeCombo::List &list, TQWidget *tqparent,
+TypeCombo<T>::TypeCombo( TypeCombo::List &list, TQWidget *parent,
const char *name )
- : KComboBox( tqparent, name ),
+ : KComboBox( parent, name ),
mTypeList( list )
{
}