Typo fix
[pulseview.git] / pv / widgets / wellarray.hpp
index 35a2f2f62e7f194b70ad49b9e23b8ec58dab4f0a..4c67ca114d0f4ba236a4428bab30a7fcbdfa61bb 100644 (file)
@@ -39,6 +39,9 @@
 **
 ****************************************************************************/
 
+#ifndef PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP
+#define PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP
+
 #include <QWidget>
 
 namespace pv {
@@ -49,8 +52,8 @@ 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:qproperty-without-notify
+    Q_PROPERTY(int selectedRow READ selectedRow)  // clazy-exclude:qproperty-without-notify
 
 public:
     WellArray(int rows, int cols, QWidget* parent = nullptr);
@@ -137,3 +140,5 @@ private:
 
 }  // namespace widgets
 } // namespace pv
+
+#endif // PULSEVIEW_PV_WIDGETS_WELLARRAY_HPP