1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-17 03:24:15 +02:00

Added separate invite strings for Google and generic XMPP.

This commit is contained in:
Teo Mrnjavac
2012-08-16 22:02:20 +02:00
parent cfa67f806b
commit f2a13fbd27
3 changed files with 9 additions and 1 deletions

View File

@@ -53,6 +53,12 @@ GoogleWrapperSip::~GoogleWrapperSip()
{ {
} }
QString
GoogleWrapperSip::inviteString() const
{
return tr( "Enter Google Address" );
}
void void
GoogleWrapperSip::showAddFriendDialog() GoogleWrapperSip::showAddFriendDialog()

View File

@@ -51,6 +51,8 @@ public:
GoogleWrapperSip( Tomahawk::Accounts::Account* account ); GoogleWrapperSip( Tomahawk::Accounts::Account* account );
virtual ~GoogleWrapperSip(); virtual ~GoogleWrapperSip();
virtual QString inviteString() const;
public slots: public slots:
void showAddFriendDialog(); void showAddFriendDialog();

View File

@@ -194,7 +194,7 @@ XmppSipPlugin::~XmppSipPlugin()
QString QString
XmppSipPlugin::inviteString() const XmppSipPlugin::inviteString() const
{ {
return tr( "Enter Jabber or Google ID" ); return tr( "Enter Jabber ID" );
} }