Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
sip doesn't like named argument in operators (apparently)
  • Loading branch information
3nids committed Jun 1, 2017
1 parent 3e73ac7 commit 6c7a12a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/qgslabelsearchtree.sip
Expand Up @@ -36,7 +36,7 @@ Removes and deletes all the entries
//! QgsLabelSearchTree cannot be copied.
QgsLabelSearchTree( const QgsLabelSearchTree &rh );
//! QgsLabelSearchTree cannot be copied.
QgsLabelSearchTree &operator=( const QgsLabelSearchTree &rh );
QgsLabelSearchTree &operator=( const QgsLabelSearchTree & );
%Docstring
:rtype: QgsLabelSearchTree
%End
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgslabelsearchtree.h
Expand Up @@ -74,7 +74,7 @@ class CORE_EXPORT QgsLabelSearchTree
//! QgsLabelSearchTree cannot be copied.
QgsLabelSearchTree( const QgsLabelSearchTree &rh );
//! QgsLabelSearchTree cannot be copied.
QgsLabelSearchTree &operator=( const QgsLabelSearchTree &rh );
QgsLabelSearchTree &operator=( const QgsLabelSearchTree & );
#endif
};

Expand Down

0 comments on commit 6c7a12a

Please sign in to comment.