1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

Removed an action

This commit is contained in:
hugolm84
2011-09-06 16:26:24 +02:00
committed by Leo Franchi
parent a0cd7869bc
commit fe7b798cda
2 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ ContextMenu::ContextMenu( QWidget* parent )
m_sigmap = new QSignalMapper( this );
connect( m_sigmap, SIGNAL( mapped( int ) ), SLOT( onTriggered( int ) ) );
m_supportedActions = ActionPlay | ActionQueue | ActionCopyLink | ActionAddToPlaylist | ActionAddTrackToPl;
m_supportedActions = ActionPlay | ActionQueue | ActionCopyLink | ActionAddToPlaylist;
}
ContextMenu::~ContextMenu()

View File

@@ -39,8 +39,8 @@ public:
ActionQueue = 2,
ActionDelete = 4,
ActionCopyLink = 8,
ActionAddToPlaylist = 9,
ActionAddTrackToPl = 5
ActionAddToPlaylist = 9
};
explicit ContextMenu( QWidget* parent = 0 );