sip doesn't like named argument in operators (apparently)

This commit is contained in:
Denis Rouzaud 2017-06-01 13:42:27 +02:00
parent 3e73ac7a5d
commit 6c7a12a207
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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
};