1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-16 11:04:01 +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
GoogleWrapperSip::showAddFriendDialog()

View File

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

View File

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