X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fmarginwidget.hpp;fp=pv%2Fview%2Fmarginwidget.hpp;h=ebe8cfc08b780ce06f3d4697d1ef277f6d2100c7;hp=1f87776197e61bd52f2248d1befe6b7294b06d21;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/view/marginwidget.hpp b/pv/view/marginwidget.hpp index 1f877761..ebe8cfc0 100644 --- a/pv/view/marginwidget.hpp +++ b/pv/view/marginwidget.hpp @@ -26,6 +26,8 @@ #include "viewwidget.hpp" +using std::shared_ptr; + namespace pv { namespace views { namespace TraceView { @@ -51,14 +53,13 @@ protected: * Indicates the event an a view item has been clicked. * @param item the view item that has been clicked. */ - virtual void item_clicked( - const std::shared_ptr &item); + virtual void item_clicked(const shared_ptr &item); /** * Shows the popup of a the specified @c ViewItem . * @param item The item to show the popup for. */ - void show_popup(const std::shared_ptr &item); + void show_popup(const shared_ptr &item); protected: virtual void contextMenuEvent(QContextMenuEvent *event);