1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-23 22:25:11 +02:00

Make consistent name

This commit is contained in:
Leo Franchi
2012-03-19 19:11:18 -04:00
parent 6da14794df
commit c0ab42021e
2 changed files with 2 additions and 2 deletions

View File

@@ -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 ) );

View File

@@ -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" ); }