mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
Fix doc
This commit is contained in:
parent
8219c180ad
commit
e48de2048a
@ -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
|
||||||
|
@ -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;
|
||||||
|
@ -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 ¶meters );
|
|
||||||
QgsWfsParameters( const QgsServerParameters ¶meters );
|
QgsWfsParameters( const QgsServerParameters ¶meters );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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 ¶meters );
|
virtual ~QgsWfsParameters() = default;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dumps parameters.
|
* Dumps parameters.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user