summaryrefslogtreecommitdiffstats
path: root/abs/core/mythinstall/MythVantage-app/mythinstall
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2013-12-10 17:20:59 (GMT)
committerBritney Fransen <brfransen@gmail.com>2013-12-10 17:20:59 (GMT)
commit607c551acfde02fef63c133565fe232191a6b6c4 (patch)
treeed41902891d31164f12932f765fa0fe879a8a502 /abs/core/mythinstall/MythVantage-app/mythinstall
parent4ae50c913a901b6e73a4825e2054a57978a0bd22 (diff)
downloadlinhes_pkgbuild-607c551acfde02fef63c133565fe232191a6b6c4.zip
linhes_pkgbuild-607c551acfde02fef63c133565fe232191a6b6c4.tar.gz
linhes_pkgbuild-607c551acfde02fef63c133565fe232191a6b6c4.tar.bz2
mythinstall: add Web Security header
Diffstat (limited to 'abs/core/mythinstall/MythVantage-app/mythinstall')
-rwxr-xr-xabs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp b/abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp
index 4acfb9d..ed7d369 100755
--- a/abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp
+++ b/abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp
@@ -321,7 +321,6 @@ void UserManagement::userdeletepopup()
WebPassword::WebPassword():
TriggeredConfigurationGroup(false,false,true,true,true,true,true,true)
{
- setLabel(QObject::tr("Web Security Settings"));
webAuth = new HostCheckBox("HOSTwebauth");
webAuth->setLabel("Enable Password");
webAuth->setHelpText(QObject::tr("Use password protection for the local website."));
@@ -348,7 +347,7 @@ WebPassword::WebPassword():
connect(webpassToggleButton, SIGNAL(pressed()), this, SLOT(togglepass()));
connect(webapplyButton, SIGNAL(pressed()),this , SLOT(webpassword_gathersettings()));
- ConfigurationGroup* webpassgroup = new VerticalConfigurationGroup(false);
+ ConfigurationGroup* webpassgroup = new VerticalConfigurationGroup(false,false);
webpassgroup->addChild(webuser);
webpassgroup->addChild(webpassword);
webpassgroup->addChild(info);
@@ -429,8 +428,9 @@ void WebPassword::webpassword_gathersettings()
}
WebPasswordFrame::WebPasswordFrame():
- VerticalConfigurationGroup()
-{
- WebPassword *webpassword = new WebPassword();
- addChild(webpassword);
-}
+ VerticalConfigurationGroup(false,false)
+ {
+ setLabel(QObject::tr("Web Security Settings"));
+ WebPassword *webpassword = new WebPassword();
+ addChild(webpassword);
+ }