Message ID | 20190110134419.20247-2-ykaradzhov@vmware.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2a3c715cdf946c16b07dab6c5f7bfc0efcac740c |
Headers | show |
Series | Cosmetic modifications in KsQuickContextMenu | expand |
diff --git a/kernel-shark-qt/src/KsQuickContextMenu.cpp b/kernel-shark-qt/src/KsQuickContextMenu.cpp index 6c9c9ef..b41adb9 100644 --- a/kernel-shark-qt/src/KsQuickContextMenu.cpp +++ b/kernel-shark-qt/src/KsQuickContextMenu.cpp @@ -61,8 +61,7 @@ KsQuickContextMenu::KsQuickContextMenu(KsDataStore *data, size_t row, _addCPUPlotAction(this), _addTaskPlotAction(this), _removeCPUPlotAction(this), - _removeTaskPlotAction(this), - _deselectAction(this) + _removeTaskPlotAction(this) { typedef void (KsQuickContextMenu::*mfp)(); QString taskName, parentName, descr; diff --git a/kernel-shark-qt/src/KsQuickContextMenu.hpp b/kernel-shark-qt/src/KsQuickContextMenu.hpp index f5a2a78..670d010 100644 --- a/kernel-shark-qt/src/KsQuickContextMenu.hpp +++ b/kernel-shark-qt/src/KsQuickContextMenu.hpp @@ -104,8 +104,6 @@ private: QAction _removeCPUPlotAction; QAction _removeTaskPlotAction; - - QAction _deselectAction; }; /**
The action used to deselect the active marker gets inherited from KsQuickMarkerMenu. This makes the declaration of an identical data member in class KsQuickContextMenu ambiguous. Signed-off-by: Yordan Karadzhov <ykaradzhov@vmware.com> --- kernel-shark-qt/src/KsQuickContextMenu.cpp | 3 +-- kernel-shark-qt/src/KsQuickContextMenu.hpp | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-)