Salome HOME
Fix Warning in NewGeom_Module.cpp
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetBoolValue.h
index f5c3f494f91eeae10b00df4e649f3915c78a89bf..b100c4ffe4cd43b6886a42aeb93c75f12fb36372 100644 (file)
@@ -31,15 +31,17 @@ Q_OBJECT
 
   virtual ~ModuleBase_WidgetBoolValue();
 
-  virtual bool restoreValue();
-
   virtual QList<QWidget*> getControls() const;
 
+  virtual void setHighlighted(bool isHighlighted);
+
 protected:
   /// Saves the internal parameters to the given feature
   /// \return True in success
   virtual bool storeValueCustom() const;
 
+  virtual bool restoreValueCustom();
+
  private:
    /// The check box
   QCheckBox* myCheckBox;