Skip to content

Commit

Permalink
Fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 22, 2017
1 parent b97a980 commit 52a9c6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/gui/attributetable/qgsattributetablemodel.sip
Expand Up @@ -240,11 +240,14 @@ class QgsAttributeTableModel : QAbstractTableModel
* @param fids feature ids
*/
virtual void featuresDeleted( const QgsFeatureIds& fids );

/**
* Launched when a feature has been added
* @param fid feature id
* @param resettingModel set to true if model is in the process of being reset
* and the normal begin/EndInsertRows calls should not be made
*/
virtual void featureAdded( QgsFeatureId fid );
virtual void featureAdded( QgsFeatureId fid, bool resettingModel = false );

/**
* Launched when layer has been deleted
Expand Down
2 changes: 2 additions & 0 deletions src/gui/attributetable/qgsattributetablemodel.h
Expand Up @@ -306,6 +306,8 @@ class GUI_EXPORT QgsAttributeTableModel: public QAbstractTableModel
/**
* Launched when a feature has been added
* @param fid feature id
* @param resettingModel set to true if model is in the process of being reset
* and the normal begin/EndInsertRows calls should not be made
*/
virtual void featureAdded( QgsFeatureId fid, bool resettingModel = false );

Expand Down

0 comments on commit 52a9c6d

Please sign in to comment.