]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/bool.hpp
Fix random clazy warnings
[pulseview.git] / pv / prop / bool.hpp
index 965efc19eec32f06acd05773a8293b4ad54761e5..fd5744fe3830f0d56779b981afca4e85aae2e4ab 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef PULSEVIEW_PV_PROP_BOOL_H
-#define PULSEVIEW_PV_PROP_BOOL_H
+#ifndef PULSEVIEW_PV_PROP_BOOL_HPP
+#define PULSEVIEW_PV_PROP_BOOL_HPP
 
 #include "property.hpp"
 
@@ -33,12 +32,13 @@ class Bool : public Property
        Q_OBJECT;
 
 public:
-       Bool(QString name, Getter getter, Setter setter);
+       Bool(QString name, QString desc, Getter getter, Setter setter);
 
-       virtual ~Bool();
+       virtual ~Bool() = default;
 
        QWidget* get_widget(QWidget *parent, bool auto_commit);
        bool labeled_widget() const;
+       void update_widget();
 
        void commit();
 
@@ -49,7 +49,7 @@ private:
        QCheckBox *check_box_;
 };
 
-} // prop
-} // pv
+}  // namespace prop
+}  // namespace pv
 
-#endif // PULSEVIEW_PV_PROP_BOOL_H
+#endif // PULSEVIEW_PV_PROP_BOOL_HPP