]> sigrok.org Git - pulseview.git/blobdiff - pv/widgets/wellarray.hpp
Fix random clazy warnings
[pulseview.git] / pv / widgets / wellarray.hpp
index 8132eb0076c35fd69ea35154a456ead64cdb2566..194fe675a5bd6f5d16400d8f787a28939e45215e 100644 (file)
@@ -39,6 +39,9 @@
 **
 ****************************************************************************/
 
+#ifndef PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP
+#define PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP
+
 #include <QWidget>
 
 namespace pv {
@@ -49,11 +52,11 @@ struct WellArrayData;
 class WellArray : public QWidget
 {
     Q_OBJECT
-    Q_PROPERTY(int selectedColumn READ selectedColumn)
-    Q_PROPERTY(int selectedRow READ selectedRow)
+    Q_PROPERTY(int selectedColumn READ selectedColumn)  // clazy-exclude:property-without-notify
+    Q_PROPERTY(int selectedRow READ selectedRow)  // clazy-exclude:property-without-notify
 
 public:
-    WellArray(int rows, int cols, QWidget* parent=0);
+    WellArray(int rows, int cols, QWidget* parent = nullptr);
     QString cellContent(int row, int col) const;
 
     int selectedColumn() const { return selCol; }
@@ -119,7 +122,7 @@ protected:
     void keyPressEvent(QKeyEvent*);
     void focusInEvent(QFocusEvent*);
     void focusOutEvent(QFocusEvent*);
-    void paintEvent(QPaintEvent *);
+    void paintEvent(QPaintEvent*);
 
 private:
     Q_DISABLE_COPY(WellArray)
@@ -135,5 +138,7 @@ private:
     WellArrayData *d;
 };
 
-} // namespace wellarray
+}  // namespace widgets
 } // namespace pv
+
+#endif // PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP