Skip to content

Commit

Permalink
sipify
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCaha committed Nov 23, 2024
1 parent f92c373 commit 27ad6dd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -467,13 +467,13 @@ Closes the data provider and free every resources used
.. versionadded:: 3.22
%End

virtual bool removeDatasetGroup( const int &index ) = 0;
virtual bool removeDatasetGroup( int index ) = 0;
%Docstring
Remove dataset group from the mesh

emits dataChanged when successful

:return: True on success
:return: ``True`` on success

.. versionadded:: 3.42
%End
Expand Down
6 changes: 3 additions & 3 deletions python/PyQt6/core/auto_generated/mesh/qgsmeshlayer.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Removes datasets from the mesh with given ``name``.

:param name: of dataset group to remove

:return: whether the dataset is added
:return: whether the dataset is removed

.. versionadded:: 3.42
%End
Expand Down Expand Up @@ -918,8 +918,8 @@ Sets labeling configuration. Takes ownership of the object.

bool datasetsPathUnique( const QString &path );
%Docstring
Checks that datasets path is already added to this mesh layer. Return true if the
dataset path is unique.
Checks whether that datasets path is already added to this mesh layer. Return ``True`` if the
dataset path is not already added.

:param path: the path to the datasets file

Expand Down
4 changes: 2 additions & 2 deletions python/core/auto_generated/mesh/qgsmeshdataprovider.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -467,13 +467,13 @@ Closes the data provider and free every resources used
.. versionadded:: 3.22
%End

virtual bool removeDatasetGroup( const int &index ) = 0;
virtual bool removeDatasetGroup( int index ) = 0;
%Docstring
Remove dataset group from the mesh

emits dataChanged when successful

:return: True on success
:return: ``True`` on success

.. versionadded:: 3.42
%End
Expand Down
6 changes: 3 additions & 3 deletions python/core/auto_generated/mesh/qgsmeshlayer.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Removes datasets from the mesh with given ``name``.

:param name: of dataset group to remove

:return: whether the dataset is added
:return: whether the dataset is removed

.. versionadded:: 3.42
%End
Expand Down Expand Up @@ -918,8 +918,8 @@ Sets labeling configuration. Takes ownership of the object.

bool datasetsPathUnique( const QString &path );
%Docstring
Checks that datasets path is already added to this mesh layer. Return true if the
dataset path is unique.
Checks whether that datasets path is already added to this mesh layer. Return ``True`` if the
dataset path is not already added.

:param path: the path to the datasets file

Expand Down

0 comments on commit 27ad6dd

Please sign in to comment.