Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 8, 2024
1 parent 0cf12fa commit 6faa9fc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ Returns ``True`` if the setting was changed during the current QGIS session.
void setEditorWidgetWrapper( QgsSettingsEditorWidgetWrapper *editorWrapper /Transfer/ );
%Docstring
Sets an editor widget wrapper for the setting
Normally, editor widgets are automatically determined and build using :py:class:`QgsSettingsEditorWidgetRegistry`.
Normally, editor widgets are automatically determined and built using :py:class:`QgsSettingsEditorWidgetRegistry`.
This might be useful for plugins to define a custom implementation.

.. versionadded:: 3.40
Expand All @@ -372,7 +372,7 @@ This might be useful for plugins to define a custom implementation.
QgsSettingsEditorWidgetWrapper *editorWidgetWrapper() const;
%Docstring
Returns the editor widget wrapper for the setting
Normally, editor widgets are automatically determined and build using :py:class:`QgsSettingsEditorWidgetRegistry` and
Normally, editor widgets are automatically determined and built using :py:class:`QgsSettingsEditorWidgetRegistry` and
this method will then return a null pointer.

.. versionadded:: 3.40
Expand Down
4 changes: 2 additions & 2 deletions python/core/auto_generated/settings/qgssettingsentry.sip.in
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ Returns ``True`` if the setting was changed during the current QGIS session.
void setEditorWidgetWrapper( QgsSettingsEditorWidgetWrapper *editorWrapper /Transfer/ );
%Docstring
Sets an editor widget wrapper for the setting
Normally, editor widgets are automatically determined and build using :py:class:`QgsSettingsEditorWidgetRegistry`.
Normally, editor widgets are automatically determined and built using :py:class:`QgsSettingsEditorWidgetRegistry`.
This might be useful for plugins to define a custom implementation.

.. versionadded:: 3.40
Expand All @@ -372,7 +372,7 @@ This might be useful for plugins to define a custom implementation.
QgsSettingsEditorWidgetWrapper *editorWidgetWrapper() const;
%Docstring
Returns the editor widget wrapper for the setting
Normally, editor widgets are automatically determined and build using :py:class:`QgsSettingsEditorWidgetRegistry` and
Normally, editor widgets are automatically determined and built using :py:class:`QgsSettingsEditorWidgetRegistry` and
this method will then return a null pointer.

.. versionadded:: 3.40
Expand Down
4 changes: 2 additions & 2 deletions src/core/settings/qgssettingsentry.h
Original file line number Diff line number Diff line change
Expand Up @@ -355,15 +355,15 @@ class CORE_EXPORT QgsSettingsEntryBase

/**
* Sets an editor widget wrapper for the setting
* Normally, editor widgets are automatically determined and build using QgsSettingsEditorWidgetRegistry.
* Normally, editor widgets are automatically determined and built using QgsSettingsEditorWidgetRegistry.
* This might be useful for plugins to define a custom implementation.
* \since QGIS 3.40
*/
void setEditorWidgetWrapper( QgsSettingsEditorWidgetWrapper *editorWrapper SIP_TRANSFER ) {mEditorWrapper = editorWrapper; }

/**
* Returns the editor widget wrapper for the setting
* Normally, editor widgets are automatically determined and build using QgsSettingsEditorWidgetRegistry and
* Normally, editor widgets are automatically determined and built using QgsSettingsEditorWidgetRegistry and
* this method will then return a null pointer.
* \since QGIS 3.40
*/
Expand Down

0 comments on commit 6faa9fc

Please sign in to comment.