This commit is contained in:
Blottiere Paul 2018-07-20 09:52:24 +01:00
parent 8219c180ad
commit e48de2048a
3 changed files with 3 additions and 14 deletions

View File

@ -128,9 +128,6 @@ Converts the parameter into a double.
%Docstring %Docstring
Converts the parameter into a boolean. Converts the parameter into a boolean.
:param ok: True if there's no error during the conversion, false otherwise
:param delimiter: The character used for delimiting
:return: A boolean :return: A boolean
%End %End
@ -139,7 +136,6 @@ Converts the parameter into a boolean.
Converts the parameter into a color. Converts the parameter into a color.
:param ok: True if there's no error during the conversion, false otherwise :param ok: True if there's no error during the conversion, false otherwise
:param delimiter: The character used for delimiting
:return: A color :return: A color
%End %End

View File

@ -126,8 +126,6 @@ class SERVER_EXPORT QgsServerParameterDefinition
/** /**
* Converts the parameter into a boolean. * Converts the parameter into a boolean.
* \param ok True if there's no error during the conversion, false otherwise
* \param delimiter The character used for delimiting
* \returns A boolean * \returns A boolean
*/ */
bool toBool() const; bool toBool() const;
@ -135,7 +133,6 @@ class SERVER_EXPORT QgsServerParameterDefinition
/** /**
* Converts the parameter into a color. * Converts the parameter into a color.
* \param ok True if there's no error during the conversion, false otherwise * \param ok True if there's no error during the conversion, false otherwise
* \param delimiter The character used for delimiting
* \returns A color * \returns A color
*/ */
QColor toColor( bool &ok ) const; QColor toColor( bool &ok ) const;

View File

@ -152,21 +152,17 @@ namespace QgsWfs
* Constructor for WFS parameters with specific values. * Constructor for WFS parameters with specific values.
* \param parameters Map of parameters where keys are parameters' names. * \param parameters Map of parameters where keys are parameters' names.
*/ */
// QgsWfsParameters( const QgsServerRequest::Parameters &parameters );
QgsWfsParameters( const QgsServerParameters &parameters ); QgsWfsParameters( const QgsServerParameters &parameters );
/** /**
* Constructor for WFS parameters with default values only. * Constructor for WFS parameters with default values only.
*/ */
QgsWfsParameters(); QgsWfsParameters();
virtual ~QgsWfsParameters() = default;
/** /**
* Loads new parameters. * Default destructor for QgsWfsParameters.
* \param parameters Map of parameters
*/ */
// void load( const QgsServerRequest::Parameters &parameters ); virtual ~QgsWfsParameters() = default;
/** /**
* Dumps parameters. * Dumps parameters.