X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=9fb8ddd76f2caad71ddfa3e8308ebf3d3eccb630;hb=752c9e02e6aa8ced24e9b53097cb42540d5e6a08;hp=fd0112ff19b88c3b24a4ec8cd0d8e3a07daf0050;hpb=b69a4c4ae0f7eb0e9c17d3db0229b04b1fe77ecf;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index fd0112ff1..9fb8ddd76 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -33,29 +33,26 @@ Q_OBJECT /// It returns false because this is an info widget virtual bool canSetValue() const { return false; }; - virtual bool restoreValue() + virtual bool restoreValueCustom() { return true; } virtual QList getControls() const; - QWidget* getControl() const; - /// 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 + virtual bool storeValueCustom() const { return true; } -private: /// A label control QLabel* myLabel; }; -#endif \ No newline at end of file +#endif