]> sigrok.org Git - pulseview.git/blobdiff - pv/widgets/popup.cpp
Random simplifications, cosmetics/whitespace/consistency fixes.
[pulseview.git] / pv / widgets / popup.cpp
index f9713b18c7163c6bf58672fa6743707dce5cc839..6d211c9887e2d3c4d20b794d97ec91ec53bd0da6 100644 (file)
@@ -18,8 +18,7 @@
  */
 
 #include <algorithm>
-
-#include <assert.h>
+#include <cassert>
 
 #include <QtGui>
 #include <QApplication>
@@ -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;