cipher: Show encryption status in the main window statusbar

Add a note to the status bar of the main window when an encrpyted
database is opened.

Also make some methods in the CipherDialog class const.
This commit is contained in:
Martin Kleusberg
2014-11-02 18:15:13 +01:00
parent e12f62515b
commit 8fb9176f99
6 changed files with 21 additions and 4 deletions

View File

@@ -27,12 +27,12 @@ CipherDialog::~CipherDialog()
delete ui;
}
QString CipherDialog::password()
QString CipherDialog::password() const
{
return ui->editPassword->text();
}
int CipherDialog::pageSize()
int CipherDialog::pageSize() const
{
return ui->spinPageSize->value();
}