X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fwidgets%2Fpopup.cpp;h=f1486e0089ac7f8a392baf58ce438d493338cbe9;hb=25e734c848a23fc526d5b410235e8e7e9fb5edde;hp=f9713b18c7163c6bf58672fa6743707dce5cc839;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/widgets/popup.cpp b/pv/widgets/popup.cpp index f9713b1..f1486e0 100644 --- a/pv/widgets/popup.cpp +++ b/pv/widgets/popup.cpp @@ -18,13 +18,12 @@ */ #include +#include -#include - -#include #include #include #include +#include #include "popup.hpp" @@ -120,7 +119,7 @@ bool Popup::space_for_arrow() const case Bottom: if (point_.y() > y()) return false; - return true; + return true; case Left: if (point_.x() < (x() + width())) @@ -169,7 +168,7 @@ QPolygon Popup::arrow_polygon() const case Left: poly << QPoint(p.x() - l, p.y() + l); break; - + case Top: poly << QPoint(p.x() + l, p.y() - l); break;