Manager: Disable add machine wizard help entirely

This commit is contained in:
Alexander Babikov
2025-07-30 02:42:29 +05:00
parent 04966d609b
commit 544c2ddee2
2 changed files with 6 additions and 0 deletions

View File

@@ -62,11 +62,14 @@ VMManagerAddMachine(QWidget *parent) : QWizard(parent)
setOption(HaveHelpButton, false);
// setPixmap(LogoPixmap, QPixmap(":/settings/qt/icons/86Box-gray.ico"));
#if 0
connect(this, &QWizard::helpRequested, this, &VMManagerAddMachine::showHelp);
#endif
setWindowTitle(tr("Add new system wizard"));
}
#if 0
void
VMManagerAddMachine::showHelp()
{
@@ -92,6 +95,7 @@ VMManagerAddMachine::showHelp()
QMessageBox::information(this, tr("Add new system wizard help"), message);
lastHelpMessage = message;
}
#endif
IntroPage::
IntroPage(QWidget *parent)

View File

@@ -42,8 +42,10 @@ public:
explicit VMManagerAddMachine(QWidget *parent = nullptr);
#if 0
private slots:
void showHelp();
#endif
};
class IntroPage : public QWizardPage {