Skip to content

Commit

Permalink
Fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 23, 2017
1 parent d5664ed commit 5f04a2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/core/qgsproperty.cpp
Expand Up @@ -30,6 +30,7 @@ QgsPropertyDefinition::QgsPropertyDefinition()
QgsPropertyDefinition::QgsPropertyDefinition( const QString& name, const QString& description, QgsPropertyDefinition::StandardPropertyTemplate type )
: mName( name )
, mDescription( description )
, mStandardType( type )
{
switch ( type )
{
Expand Down
1 change: 1 addition & 0 deletions src/core/qgsproperty_p.h
Expand Up @@ -85,5 +85,6 @@ class QgsPropertyPrivate : public QSharedData

};

///@endcond PRIVATE

#endif // QGSPROPERTYPRIVATE_H
4 changes: 3 additions & 1 deletion src/core/qgspropertycollection.h
Expand Up @@ -107,7 +107,7 @@ class CORE_EXPORT QgsAbstractPropertyCollection
* @param key integer key for property to return. The intended use case is that a context specific enum is cast to
* int and used for the key value.
* @param context QgsExpressionContext to evaluate the property for.
* @param defaultValue default string to return if the property cannot be calculated as a string
* @param defaultString default string to return if the property cannot be calculated as a string
* @param ok if specified, will be set to true if conversion was successful
* @returns value parsed to string
* @see value()
Expand Down Expand Up @@ -220,6 +220,7 @@ class CORE_EXPORT QgsAbstractPropertyCollection
* Writes the current state of the property collection into an XML element
* @param collectionElem destination element for the property collection's state
* @param doc DOM document
* @param definitions property definitions
* @see readXml()
*/
virtual bool writeXml( QDomElement& collectionElem, QDomDocument& doc, const QgsPropertiesDefinition& definitions ) const = 0;
Expand All @@ -228,6 +229,7 @@ class CORE_EXPORT QgsAbstractPropertyCollection
* Reads property collection state from an XML element.
* @param collectionElem source DOM element for property collection's state
* @param doc DOM document
* @param definitions property definitions
* @see writeXml()
*/
virtual bool readXml( const QDomElement& collectionElem, const QDomDocument& doc, const QgsPropertiesDefinition& definitions ) = 0;
Expand Down

0 comments on commit 5f04a2a

Please sign in to comment.