Salome HOME
Issue #394 Undo-ing a Sketch element
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetLabel.h
index 8d7d4281f9e490cadf1808040be4ad266d3480c5..fd0112ff19b88c3b24a4ec8cd0d8e3a07daf0050 100644 (file)
@@ -33,11 +33,6 @@ Q_OBJECT
   /// It returns false because this is an info widget
   virtual bool canSetValue() const { return false; };
 
-  virtual bool storeValue() const
-  {
-    return true;
-  }
-
   virtual bool restoreValue()
   {
     return true;
@@ -50,6 +45,14 @@ Q_OBJECT
   /// This control doesn't accept focus
   virtual bool focusTo() { return false; }
 
+protected:
+  /// Saves the internal parameters to the given feature
+  /// \return True in success
+  virtual bool storeValue() const
+  {
+    return true;
+  }
+
 private:
   /// A label control
   QLabel* myLabel;