diff --git a/src/app/qgsmapthemes.cpp b/src/app/qgsmapthemes.cpp index 42272e364803..dfa7db7e09ef 100644 --- a/src/app/qgsmapthemes.cpp +++ b/src/app/qgsmapthemes.cpp @@ -133,7 +133,7 @@ void QgsMapThemes::replaceTriggered() if ( !actionPreset ) return; - int res = QMessageBox::question( mMenu, tr( "Replace Theme" ), + int res = QMessageBox::question( nullptr, 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( mMenu, tr( "Remove Theme" ), + int res = QMessageBox::question( nullptr, 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 )