summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp')
-rw-r--r--kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp b/kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp
index 48e1b159..16dd8a51 100644
--- a/kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp
+++ b/kopete/kopete/addcontactwizard/fastaddcontactwizard.cpp
@@ -30,8 +30,8 @@
#include "fastaddcontactwizard.h"
-FastAddContactWizard::FastAddContactWizard( TQWidget *parent, const char *name )
-: FastAddContactWizard_Base( parent, name )
+FastAddContactWizard::FastAddContactWizard( TQWidget *tqparent, const char *name )
+: FastAddContactWizard_Base( tqparent, name )
{
m_accountItems.clear();
@@ -41,7 +41,7 @@ FastAddContactWizard::FastAddContactWizard( TQWidget *parent, const char *name )
for(Kopete::Account *i=accounts.first() ; i; i=accounts.next() )
{
accountLVI= new TQListViewItem( protocolListView, i->accountLabel() );
- accountLVI->setText(1,i->protocol()->displayName() + TQString::fromLatin1(" ") );
+ accountLVI->setText(1,i->protocol()->displayName() + TQString::tqfromLatin1(" ") );
accountLVI->setPixmap( 1, SmallIcon( i->protocol()->pluginIcon() ) );
m_accountItems.insert(accountLVI,i);
}
@@ -87,7 +87,7 @@ void FastAddContactWizard::next()
{
TQString title = i18n( "The account name is prepended here",
"%1 contact information" )
- .arg( item->text(0) );
+ .tqarg( item->text(0) );
addPage->show();
insertPage( addPage, title, indexOf( finis ) );
protocolPages.insert( m_accountItems[item] , addPage );