Salome HOME
Fix regression in unit tests
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetBoolValue.h
index 47d574a14be67627cdf53f8b12f9d18dd0f53676..b100c4ffe4cd43b6886a42aeb93c75f12fb36372 100644 (file)
@@ -31,17 +31,17 @@ Q_OBJECT
 
   virtual ~ModuleBase_WidgetBoolValue();
 
-  virtual bool restoreValue();
-
   virtual QList<QWidget*> getControls() const;
 
-  QWidget* getControl() 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;