summaryrefslogtreecommitdiffstats
path: root/abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/mythinstall/MythVantage-app/mythinstall/password_manage.cpp')
-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);
+ }