Add missing docstring

This commit is contained in:
Matthias Kuhn 2018-04-09 07:53:34 +02:00
parent 180b5496ef
commit 3d9b8bbd69
2 changed files with 9 additions and 0 deletions

View File

@ -63,6 +63,11 @@ Returns the global layout item GUI registry, used for registering the GUI behavi
%End
static QgsProcessingGuiRegistry *processingGuiRegistry();
%Docstring
Returns the global processing gui registry, used for registering the GUI behavior of processing algorithms.
.. versionadded:: 3.2
%End
static void enableAutoGeometryRestore( QWidget *widget, const QString &key = QString() );
%Docstring

View File

@ -90,6 +90,10 @@ class GUI_EXPORT QgsGui
*/
static QgsLayoutItemGuiRegistry *layoutItemGuiRegistry();
/**
* Returns the global processing gui registry, used for registering the GUI behavior of processing algorithms.
* \since QGIS 3.2
*/
static QgsProcessingGuiRegistry *processingGuiRegistry();
/**