summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/ui/accountselector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/ui/accountselector.cpp')
-rw-r--r--kopete/libkopete/ui/accountselector.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/libkopete/ui/accountselector.cpp b/kopete/libkopete/ui/accountselector.cpp
index 345e9ab4..e1f31900 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 *parent, Kopete::Account *acc)
- : KListViewItem(parent)
+ AccountListViewItem(TQListView *tqparent, Kopete::Account *acc)
+ : KListViewItem(tqparent)
{
if (acc==0)
return;
@@ -62,8 +62,8 @@ class AccountSelectorPrivate
};
-AccountSelector::AccountSelector(TQWidget *parent, const char *name)
- : TQWidget(parent, name)
+AccountSelector::AccountSelector(TQWidget *tqparent, const char *name)
+ : TQWidget(tqparent, name)
{
//kdDebug(14010) << k_funcinfo << "for no special protocol" << endl;
d = new AccountSelectorPrivate;
@@ -72,8 +72,8 @@ AccountSelector::AccountSelector(TQWidget *parent, const char *name)
}
-AccountSelector::AccountSelector(Kopete::Protocol *proto, TQWidget *parent,
- const char *name) : TQWidget(parent, name)
+AccountSelector::AccountSelector(Kopete::Protocol *proto, TQWidget *tqparent,
+ const char *name) : TQWidget(tqparent, name)
{
//kdDebug(14010) << k_funcinfo << " for protocol " << proto->pluginId() << endl;
d = new AccountSelectorPrivate;
@@ -95,7 +95,7 @@ void AccountSelector::initUI()
(new TQVBoxLayout(this))->setAutoAdd(true);
d->lv = new KListView(this);
d->lv->setFullWidth(true);
- d->lv->addColumn(TQString::fromLatin1(""));
+ d->lv->addColumn(TQString::tqfromLatin1(""));
d->lv->header()->hide();
if(d->proto != 0)