From fe7b798cda746e5aa4518cf60487e3f578111f8b Mon Sep 17 00:00:00 2001 From: hugolm84 Date: Tue, 6 Sep 2011 16:26:24 +0200 Subject: [PATCH] Removed an action --- src/libtomahawk/contextmenu.cpp | 2 +- src/libtomahawk/contextmenu.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libtomahawk/contextmenu.cpp b/src/libtomahawk/contextmenu.cpp index 46764d04d..d3d2e6421 100644 --- a/src/libtomahawk/contextmenu.cpp +++ b/src/libtomahawk/contextmenu.cpp @@ -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() diff --git a/src/libtomahawk/contextmenu.h b/src/libtomahawk/contextmenu.h index a653c65fb..167723ebf 100644 --- a/src/libtomahawk/contextmenu.h +++ b/src/libtomahawk/contextmenu.h @@ -39,8 +39,8 @@ public: ActionQueue = 2, ActionDelete = 4, ActionCopyLink = 8, - ActionAddToPlaylist = 9, - ActionAddTrackToPl = 5 + ActionAddToPlaylist = 9 + }; explicit ContextMenu( QWidget* parent = 0 );