]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix coding standard issues
authorvsv <vsv@opencascade.com>
Mon, 25 Dec 2017 15:00:03 +0000 (18:00 +0300)
committervsv <vsv@opencascade.com>
Mon, 25 Dec 2017 15:00:03 +0000 (18:00 +0300)
src/Config/Config_FeatureMessage.h
src/ModuleBase/ModuleBase_WidgetChoice.cpp

index 3bbe0a5faee628e12cd11e0b6f97dbb9df9d3ee6..4b6419f9e8e1d496a24b863d8e309dc9ed6900b7 100644 (file)
@@ -52,7 +52,9 @@ class Config_FeatureMessage : public Events_Message
   bool myInternal;  ///<Internal feature without GUI representation
   bool myModal;     ///<True if the feature has to be represented by modal dialog box
   bool myIsAutoPreview; ///< Preview computation is performed automatically
-  bool myIsApplyContinue;  ///<True if the feature can have Apply/Continue button in its property panel
+
+  /// True if the feature can have Apply/Continue button in its property panel
+  bool myIsApplyContinue;
 
   std::string myNestedFeatures; ///<Space separated list of child features
   std::string myActionsWhenNested; ///<Space separated list of actions
@@ -143,7 +145,8 @@ class Config_FeatureMessage : public Events_Message
   CONFIG_EXPORT void setAutoPreview(bool isAutoPreview);
   ///Set modality state; If true - the feature will be represented by modal dialog box GUI
   CONFIG_EXPORT void setModal(bool isModal);
-  ///Set Apply/Continue state; If true - the feature can have Apply/Continue button in its property panel
+  ///Set Apply/Continue state;
+  ///If true - the feature can have Apply/Continue button in its property panel
   CONFIG_EXPORT void setApplyContinue(bool isModal);
 };
 
index c259ed3247a00f3f87783b59bb5e973b5a62f654..555fbf78b4c1eaeff123f96ba8d784aa0f086653 100644 (file)
@@ -70,7 +70,8 @@ ModuleBase_WidgetChoice::ModuleBase_WidgetChoice(QWidget* theParent,
 
   QHBoxLayout* aLayout = new QHBoxLayout(this);
   myChoiceCtrl =  new ModuleBase_ChoiceCtrl(this, aList, aIconList,
-    (aWgtType == "radiobuttons")? ModuleBase_ChoiceCtrl::RadioButtons : ModuleBase_ChoiceCtrl::ComboBox,
+    (aWgtType == "radiobuttons")? ModuleBase_ChoiceCtrl::RadioButtons :
+                                  ModuleBase_ChoiceCtrl::ComboBox,
     (aWgtDir == "horizontal")? Qt::Horizontal : Qt::Vertical);
   myChoiceCtrl->setLabel(aLabelText);