1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

Add dummy Sync with menu

This commit is contained in:
Uwe L. Korn 2014-07-20 18:08:09 +01:00
parent b7cee78106
commit 5da18c59ce

View File

@ -240,6 +240,10 @@ SourceTreeView::setupMenus()
{
QAction* exportPlaylist = m_playlistMenu.addAction( tr( "&Export Playlist") );
connect( exportPlaylist, SIGNAL( triggered() ), this, SLOT( exportPlaylist() ) );
QMenu* playlistSyncMenu = m_playlistMenu.addMenu( tr( "Sync with .." ) );
// TODO: List Services that can sync a playlist
// TODO: Add a checkmark to the service that syncs this playlist
}
QAction* deletePlaylistAction = m_playlistMenu.addAction( tr( "&Delete %1" ).arg( SourcesModel::rowTypeToString( type ) ) );