X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModuleBase%2FModuleBase_WidgetLabel.h;h=97454bf6f771c737fbd266395db9cb5ff77fa627;hb=00f2a20db376364e0ca3033bc0dd82cfe31580a5;hp=9f74e614bd06f877ed10c9a29d66907d953b7c4e;hpb=9a7ff0679f4cd8c203f53a2187d47a008bbd11c6;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLabel.h b/src/ModuleBase/ModuleBase_WidgetLabel.h index 9f74e614b..97454bf6f 100644 --- a/src/ModuleBase/ModuleBase_WidgetLabel.h +++ b/src/ModuleBase/ModuleBase_WidgetLabel.h @@ -23,15 +23,13 @@ Q_OBJECT /// Constructor /// \param theParent the parent object /// \param theData the widget configuation. The attribute of the model widget is obtained from - /// \param theParentId is Id of a parent of the current attribute - ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData, - const std::string& theParentId); + ModuleBase_WidgetLabel(QWidget* theParent, const Config_WidgetAPI* theData); virtual ~ModuleBase_WidgetLabel(); /// Defines if it is supported to set the value in this widget /// It returns false because this is an info widget - virtual bool canSetValue() const { return false; }; + virtual bool canAcceptFocus() const { return false; }; virtual bool restoreValueCustom() { @@ -51,7 +49,6 @@ protected: return true; } -private: /// A label control QLabel* myLabel; };