Skip to content

Commit

Permalink
Fix incorrect ownership of processing algorithm dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 23, 2018
1 parent 57c117c commit 4d97d20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingalgorithmdialogbase.h
Expand Up @@ -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.
Expand Down

0 comments on commit 4d97d20

Please sign in to comment.