diff --git a/src/libcalamaresui/ViewManager.cpp b/src/libcalamaresui/ViewManager.cpp
index 6679bebae..3daddc0dc 100644
--- a/src/libcalamaresui/ViewManager.cpp
+++ b/src/libcalamaresui/ViewManager.cpp
@@ -287,6 +287,37 @@ isAtVeryEnd( const ViewStepList& steps, int index )
return ( index >= steps.count() ) || ( index == steps.count() - 1 && steps.last()->isAtEnd() );
}
+static int
+questionBox( QWidget* parent,
+ const QString& title,
+ const QString& question,
+ const QString& button0,
+ const QString& button1 )
+{
+
+#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
+ QMessageBox mb( QMessageBox::Question, title, question, QMessageBox::StandardButton::NoButton, parent );
+ const auto* const okButton = mb.addButton( button0, QMessageBox::AcceptRole );
+ mb.addButton( button1, QMessageBox::RejectRole );
+ mb.exec();
+ if ( mb.clickedButton() == okButton )
+ {
+ return 0;
+ }
+ return 1; // Cancel
+#else
+ return QMessageBox::question( parent,
+ title,
+ question,
+ button0,
+ button1,
+ QString(),
+ 0 /* default first button, i.e. confirm */,
+ 1 /* escape is second button, i.e. cancel */ );
+
+#endif
+}
+
void
ViewManager::next()
{
@@ -318,15 +349,11 @@ ViewManager::next()
QString confirm = settings->isSetupMode() ? tr( "&Set up now" ) : tr( "&Install now" );
const auto* branding = Calamares::Branding::instance();
- int reply
- = QMessageBox::question( m_widget,
- title,
- question.arg( branding->shortProductName(), branding->shortVersionedName() ),
- confirm,
- tr( "Go &back" ),
- QString(),
- 0 /* default first button, i.e. confirm */,
- 1 /* escape is second button, i.e. cancel */ );
+ int reply = questionBox( m_widget,
+ title,
+ question.arg( branding->shortProductName(), branding->shortVersionedName() ),
+ confirm,
+ tr( "Go &back" ) );
if ( reply == 1 )
{
return;
@@ -548,7 +575,7 @@ ViewManager::data( const QModelIndex& index, int role ) const
// we must be in debug-mode (-d) so presumably it
// is a distro-developer or Calamares-developer
// running it, and we don't need translation for them.
- QString toolTip( "Debug information" ); // Intentionally no translation here
+ QString toolTip( "Debug information" ); // Intentionally no translation here
toolTip.append( "
Type:\tViewStep" );
toolTip.append( QString( "
Pretty:\t%1" ).arg( step->prettyName() ) );
toolTip.append( QString( "
Status:\t%1" ).arg( step->prettyStatus() ) );