Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2013-11-13 23:12:56 +0400
committerDaniel Molkentin <danimo@owncloud.com>2013-11-13 23:12:56 +0400
commit8f61cc4041410210e891df19d69ccac46f83c753 (patch)
treee2599972f52e445428eee7baa40f2873401632e4 /src/wizard
parent21c9fc2d354d67b342154aa068e587136cce2a03 (diff)
Hint the OS to not show [?] in Wizards and Dialogs
Fixes #1156
Diffstat (limited to 'src/wizard')
-rw-r--r--src/wizard/owncloudwizard.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wizard/owncloudwizard.cpp b/src/wizard/owncloudwizard.cpp
index a51bd64d2..7635e2f08 100644
--- a/src/wizard/owncloudwizard.cpp
+++ b/src/wizard/owncloudwizard.cpp
@@ -47,6 +47,7 @@ OwncloudWizard::OwncloudWizard(QWidget *parent)
_setupLog(),
_configExists(false)
{
+ setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
setPage(WizardCommon::Page_ServerSetup, _setupPage);
setPage(WizardCommon::Page_HttpCreds, _httpCredsPage);
setPage(WizardCommon::Page_ShibbolethCreds, _shibbolethCredsPage);