mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Get modified status directly from database object instead of using window title
This commit is contained in:
parent
a87fab8d18
commit
18b5b76a80
3 changed files with 16 additions and 5 deletions
|
@ -526,6 +526,15 @@ bool DatabaseTabWidget::readOnly(int index)
|
|||
return indexDatabaseManagerStruct(index).readOnly;
|
||||
}
|
||||
|
||||
bool DatabaseTabWidget::isModified(int index)
|
||||
{
|
||||
if (index == -1) {
|
||||
index = currentIndex();
|
||||
}
|
||||
|
||||
return indexDatabaseManagerStruct(index).modified;
|
||||
}
|
||||
|
||||
void DatabaseTabWidget::updateTabName(Database* db)
|
||||
{
|
||||
int index = databaseIndex(db);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue