Skip to content

Commit

Permalink
Fix missing doc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 22, 2016
1 parent 3cc9b5d commit a51bebd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/core/qgsvectordataprovider.sip
Expand Up @@ -390,7 +390,11 @@ class QgsVectorDataProvider : QgsDataProvider
//! Populates the cache of minimum and maximum attribute values.
void fillMinMaxCache() const;

void pushError( const QString& msg );
/**
* Raises an error message from the provider.
*/
void pushError( const QString& msg ) const;


/** Converts the geometry to the provider type if possible / necessary
@return the converted geometry or nullptr if no conversion was necessary or possible*/
Expand Down
3 changes: 3 additions & 0 deletions src/core/qgsvectordataprovider.h
Expand Up @@ -465,6 +465,9 @@ class CORE_EXPORT QgsVectorDataProvider : public QgsDataProvider
/** The names of the providers native types*/
QList< NativeType > mNativeTypes;

/**
* Raises an error message from the provider.
*/
void pushError( const QString& msg ) const;

/** Old-style mapping of index to name for QgsPalLabeling fix */
Expand Down

0 comments on commit a51bebd

Please sign in to comment.