1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 21:57:41 +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 ); m_sigmap = new QSignalMapper( this );
connect( m_sigmap, SIGNAL( mapped( int ) ), SLOT( onTriggered( int ) ) ); connect( m_sigmap, SIGNAL( mapped( int ) ), SLOT( onTriggered( int ) ) );
m_supportedActions = ActionPlay | ActionQueue | ActionCopyLink | ActionAddToPlaylist | ActionAddTrackToPl; m_supportedActions = ActionPlay | ActionQueue | ActionCopyLink | ActionAddToPlaylist;
} }
ContextMenu::~ContextMenu() ContextMenu::~ContextMenu()

View File

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