From 157822eeafa190eb10e3279e0df5d9fa8e4e41b8 Mon Sep 17 00:00:00 2001 From: Pieter van der Kloet Date: Wed, 11 May 2011 22:44:11 +0200 Subject: [PATCH] Removed what's this? button from dialog titlebar --- apps/launcher/maindialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/launcher/maindialog.cpp b/apps/launcher/maindialog.cpp index d3bc1603df..2e973a5ff1 100644 --- a/apps/launcher/maindialog.cpp +++ b/apps/launcher/maindialog.cpp @@ -44,6 +44,8 @@ MainDialog::MainDialog() setWindowTitle(tr("OpenMW Launcher")); setWindowIcon(QIcon(":/images/openmw-icon.png")); + // Remove what's this? button + setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint); setMinimumSize(QSize(575, 575)); connect(buttonBox, SIGNAL(rejected()), this, SLOT(close()));