X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=9d4c43c21d2321f0ad20526075b1ace4dbeb5be7;hp=75ef4ea63e69b223616ffb072207dfba3b4ed224;hb=a55c544b0fefead0786633d6d7c2356002b192ae;hpb=137ed2551534f005bf79b24bd6c95eef1be5611b diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 75ef4ea..9d4c43c 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -24,6 +24,8 @@ #include +using namespace std; + namespace pv { namespace view { @@ -53,5 +55,11 @@ void TimeMarker::paint(QPainter &p, const QRect &rect) p.drawLine(QPointF(x, rect.top()), QPointF(x, rect.bottom())); } +const list TimeMarker::get_context_bar_actions() +{ + list actions; + return actions; +} + } // namespace view } // namespace pv