summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/security/security.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/settings/security/security.cpp b/core/settings/security/security.cpp
index 2821f4b..4701506 100644
--- a/core/settings/security/security.cpp
+++ b/core/settings/security/security.cpp
@@ -58,24 +58,25 @@ Security::Security( QWidget* parent, const char* name, WFlags fl )
connect(changepasscode,SIGNAL(clicked()), this, SLOT(changePassCode()));
connect(clearpasscode,SIGNAL(clicked()), this, SLOT(clearPassCode()));
updateGUI();
dl = new QPEDialogListener(this);
+ showMaximized();
}
Security::~Security()
{
}
void Security::updateGUI()
{
bool empty = passcode.isEmpty();
- changepasscode->setText( empty ? tr("Set passcode" )
+ changepasscode->setText( empty ? tr("Set passcode" )
: tr("Change passcode" ) );
passcode_poweron->setEnabled( !empty );
clearpasscode->setEnabled( !empty );
}
@@ -89,13 +90,13 @@ void Security::show()
//changePassCode();
//if ( passcode.isEmpty() )
//reject();
} else {
QString pc = enterPassCode(tr("Enter passcode"));
if ( pc != passcode ) {
- QMessageBox::critical(this, tr("Passcode incorrect"),
+ QMessageBox::critical(this, tr("Passcode incorrect"),
tr("The passcode entered is incorrect.\nAccess denied"));
reject();
return;
}
}
setEnabled(TRUE);