Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
move parent to mainwindow widget
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/app/qgsmapthemes.cpp
|
@@ -133,7 +133,7 @@ void QgsMapThemes::replaceTriggered() |
|
|
if ( !actionPreset ) |
|
|
return; |
|
|
|
|
|
int res = QMessageBox::question( nullptr, tr( "Replace Theme" ), |
|
|
int res = QMessageBox::question( QgisApp::instance(), tr( "Replace Theme" ), |
|
|
tr( "Are you sure you want to replace the existing theme “%1”?" ).arg( actionPreset->text() ), |
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No ); |
|
|
if ( res != QMessageBox::Yes ) |
|
@@ -160,7 +160,7 @@ void QgsMapThemes::removeCurrentPreset() |
|
|
{ |
|
|
if ( actionPreset->isChecked() ) |
|
|
{ |
|
|
int res = QMessageBox::question( nullptr, tr( "Remove Theme" ), |
|
|
int res = QMessageBox::question( QgisApp::instance(), tr( "Remove Theme" ), |
|
|
tr( "Are you sure you want to remove the existing theme “%1”?" ).arg( actionPreset->text() ), |
|
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No ); |
|
|
if ( res == QMessageBox::Yes ) |
|
|