Remove question marks from Windows dialogs

This commit is contained in:
Daniel Ramöller 2016-10-03 20:20:16 +02:00 committed by Guillaume Munch
parent 071eed8664
commit cf26d53e03
2 changed files with 8 additions and 2 deletions

View File

@ -30,7 +30,10 @@ public:
/// \param title is the window title used for decoration. /// \param title is the window title used for decoration.
DialogView(GuiView & lv, QString const & name, QString const & title) DialogView(GuiView & lv, QString const & name, QString const & title)
: QDialog(&lv), Dialog(lv, name, "LyX: " + title) : QDialog(&lv), Dialog(lv, name, "LyX: " + title)
{} {
// remove question marks from Windows dialogs
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
}
virtual QWidget * asQWidget() { return this; } virtual QWidget * asQWidget() { return this; }
virtual QWidget const * asQWidget() const { return this; } virtual QWidget const * asQWidget() const { return this; }

View File

@ -27,7 +27,10 @@ namespace frontend {
GuiDialog::GuiDialog(GuiView & lv, QString const & name, QString const & title) GuiDialog::GuiDialog(GuiView & lv, QString const & name, QString const & title)
: QDialog(&lv), Dialog(lv, name, "LyX: " + title), updating_(false), : QDialog(&lv), Dialog(lv, name, "LyX: " + title), updating_(false),
is_closing_(false) is_closing_(false)
{} {
// remove question marks from Windows dialogs
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
}
void GuiDialog::closeEvent(QCloseEvent * ev) void GuiDialog::closeEvent(QCloseEvent * ev)