Correct typo

This commit is contained in:
Arnaud Bienner 2012-03-27 00:46:06 +02:00
parent bee99b7554
commit f98616b60b
1 changed files with 3 additions and 3 deletions

View File

@ -515,10 +515,10 @@ void GroovesharkService::EnsureMenuCreated() {
IconLoader::Load("list-remove"), tr("Remove from favorites"), IconLoader::Load("list-remove"), tr("Remove from favorites"),
this, SLOT(RemoveCurrentFromFavorites())); this, SLOT(RemoveCurrentFromFavorites()));
get_url_to_share_song_ = context_menu_->addAction( get_url_to_share_song_ = context_menu_->addAction(
tr("Get an URL to share this Grooveshark song"), tr("Get a URL to share this Grooveshark song"),
this, SLOT(GetCurrentSongUrlToShare())); this, SLOT(GetCurrentSongUrlToShare()));
get_url_to_share_playlist_ = context_menu_->addAction( get_url_to_share_playlist_ = context_menu_->addAction(
tr("Get an URL to share this Grooveshark playlist"), tr("Get a URL to share this Grooveshark playlist"),
this, SLOT(GetCurrentPlaylistUrlToShare())); this, SLOT(GetCurrentPlaylistUrlToShare()));
context_menu_->addSeparator(); context_menu_->addSeparator();
context_menu_->addAction(IconLoader::Load("edit-find"), context_menu_->addAction(IconLoader::Load("edit-find"),
@ -1060,7 +1060,7 @@ QList<QAction*> GroovesharkService::playlistitem_actions(const Song& song) {
add_to_playlists->setMenu(playlists_menu); add_to_playlists->setMenu(playlists_menu);
playlistitem_actions_.append(add_to_playlists); playlistitem_actions_.append(add_to_playlists);
QAction* share_song = new QAction(tr("Get an URL to share this Grooveshark song"), this); QAction* share_song = new QAction(tr("Get a URL to share this Grooveshark song"), this);
connect(share_song, SIGNAL(triggered()), SLOT(GetCurrentSongUrlToShare())); connect(share_song, SIGNAL(triggered()), SLOT(GetCurrentSongUrlToShare()));
playlistitem_actions_.append(share_song); playlistitem_actions_.append(share_song);