diff options
Diffstat (limited to 'kopete/libkopete/ui/accountselector.cpp')
-rw-r--r-- | kopete/libkopete/ui/accountselector.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/libkopete/ui/accountselector.cpp b/kopete/libkopete/ui/accountselector.cpp index e1f31900..3a9b94ff 100644 --- a/kopete/libkopete/ui/accountselector.cpp +++ b/kopete/libkopete/ui/accountselector.cpp @@ -32,8 +32,8 @@ class AccountListViewItem : public KListViewItem Kopete::Account *mAccount; public: - AccountListViewItem(TQListView *tqparent, Kopete::Account *acc) - : KListViewItem(tqparent) + AccountListViewItem(TQListView *parent, Kopete::Account *acc) + : KListViewItem(parent) { if (acc==0) return; @@ -62,8 +62,8 @@ class AccountSelectorPrivate }; -AccountSelector::AccountSelector(TQWidget *tqparent, const char *name) - : TQWidget(tqparent, name) +AccountSelector::AccountSelector(TQWidget *parent, const char *name) + : TQWidget(parent, name) { //kdDebug(14010) << k_funcinfo << "for no special protocol" << endl; d = new AccountSelectorPrivate; @@ -72,8 +72,8 @@ AccountSelector::AccountSelector(TQWidget *tqparent, const char *name) } -AccountSelector::AccountSelector(Kopete::Protocol *proto, TQWidget *tqparent, - const char *name) : TQWidget(tqparent, name) +AccountSelector::AccountSelector(Kopete::Protocol *proto, TQWidget *parent, + const char *name) : TQWidget(parent, name) { //kdDebug(14010) << k_funcinfo << " for protocol " << proto->pluginId() << endl; d = new AccountSelectorPrivate; |