mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
Fix incorrect ownership of processing algorithm dialog
This commit is contained in:
parent
57c117cdf4
commit
4d97d20635
@ -34,7 +34,7 @@ Base class for processing algorithm dialogs.
|
||||
FormatHtml,
|
||||
};
|
||||
|
||||
QgsProcessingAlgorithmDialogBase( QWidget *parent = 0, Qt::WindowFlags flags = 0 );
|
||||
QgsProcessingAlgorithmDialogBase( QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = 0 );
|
||||
%Docstring
|
||||
Constructor for QgsProcessingAlgorithmDialogBase.
|
||||
%End
|
||||
|
@ -98,7 +98,7 @@ class GUI_EXPORT QgsProcessingAlgorithmDialogBase : public QDialog, private Ui::
|
||||
/**
|
||||
* Constructor for QgsProcessingAlgorithmDialogBase.
|
||||
*/
|
||||
QgsProcessingAlgorithmDialogBase( QWidget *parent = nullptr, Qt::WindowFlags flags = nullptr );
|
||||
QgsProcessingAlgorithmDialogBase( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags flags = nullptr );
|
||||
|
||||
/**
|
||||
* Sets the \a algorithm to run in the dialog.
|
||||
|
Loading…
x
Reference in New Issue
Block a user