summaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-03-31 14:49:58 +0200
committerKai Koehne <kai.koehne@theqtcompany.com>2015-04-08 08:33:02 +0000
commit3aab9ef38ec82301cef41bd029116a56710c2194 (patch)
tree832fd74c7b72bbb5879c06bf04e398a566fe2933 /src/libs
parenta4c902f27ada53443aa727133ce5bce2d253c7e3 (diff)
Improve Proxy Credentials dialog
Give it a title + hide the "What's this?" button. Change-Id: I2717a0eeda5c2ca3da511d88540307763228b30b Reviewed-by: Jarek Kobus <jaroslaw.kobus@theqtcompany.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@theqtcompany.com>
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/installer/proxycredentialsdialog.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libs/installer/proxycredentialsdialog.cpp b/src/libs/installer/proxycredentialsdialog.cpp
index ce8c9a88b..559f9d3bb 100644
--- a/src/libs/installer/proxycredentialsdialog.cpp
+++ b/src/libs/installer/proxycredentialsdialog.cpp
@@ -42,6 +42,9 @@ ProxyCredentialsDialog::ProxyCredentialsDialog(const QNetworkProxy &proxy, QWidg
QDialog(parent),
ui(new Ui::ProxyCredentialsDialog)
{
+ setWindowTitle(tr("Proxy Credentials"));
+ setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
+
ui->setupUi(this);
setUserName(proxy.user());