mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-21 03:21:43 -06:00
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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user