From c0ab42021ed20661f97514b89f5cc41e3aa09207 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Mon, 19 Mar 2012 19:11:18 -0400 Subject: [PATCH] Make consistent name --- src/accounts/xmpp/xmppaccount.cpp | 2 +- src/accounts/xmpp/xmppaccount.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounts/xmpp/xmppaccount.cpp b/src/accounts/xmpp/xmppaccount.cpp index 1c23f45c3..6299850e5 100644 --- a/src/accounts/xmpp/xmppaccount.cpp +++ b/src/accounts/xmpp/xmppaccount.cpp @@ -40,7 +40,7 @@ XmppAccountFactory::createAccount( const QString& accountId ) XmppAccount::XmppAccount( const QString &accountId ) : Account( accountId ) { - setAccountServiceName( "XMPP (Jabber)" ); + setAccountServiceName( "Jabber (XMPP)" ); setTypes( SipType ); m_configWidget = QWeakPointer< QWidget >( new XmppConfigWidget( this, 0 ) ); diff --git a/src/accounts/xmpp/xmppaccount.h b/src/accounts/xmpp/xmppaccount.h index a6c50ae20..1ac87939e 100644 --- a/src/accounts/xmpp/xmppaccount.h +++ b/src/accounts/xmpp/xmppaccount.h @@ -46,7 +46,7 @@ public: XmppAccountFactory() {} virtual ~XmppAccountFactory() {} - QString prettyName() const { return "XMPP (Jabber)"; } + QString prettyName() const { return "Jabber (XMPP)"; } QString description() const { return tr( "Log on to your Jabber/XMPP account to connect to your friends" ); } QString factoryId() const { return "xmppaccount"; } QPixmap icon() const { return QPixmap( ":/xmpp-icon.png" ); }