Salome HOME
Fix for naming in Build features.
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_WidgetCreator.h
index 872fd55115f65f62cb7fd42d73bcabfe7ee96e0b..d6878a68e03a02f8ca6e2543d4c97271ae32e224 100644 (file)
@@ -25,20 +25,20 @@ public:
   ParametersPlugin_WidgetCreator();
 
   /// Returns a container of possible widget types, which this creator can process
-  /// \param a list of type names
+  /// \param theTypes a list of type names
   virtual void widgetTypes(std::set<std::string>& theTypes);
 
   /// Create widget by its type
   /// The default implementation is empty
   /// \param theType a type
   /// \param theParent a parent widget
-  /// \param theData a low-level API for reading xml definitions of widgets
+  /// \param theWidgetApi a low-level API for reading xml definitions of widgets
   /// \param theWorkshop a current workshop
   /// \return a created model widget or null
   virtual ModuleBase_ModelWidget* createWidgetByType(const std::string& theType,
                                                      QWidget* theParent,
                                                      Config_WidgetAPI* theWidgetApi,
-                                                     ModuleBase_IWorkshop* /*theWorkshop*/);
+                                                     ModuleBase_IWorkshop* theWorkshop);
 };
 
 #endif