mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Fix minor typos (#10124)
This commit is contained in:
@@ -1549,7 +1549,7 @@ bool EntryData::equals(const EntryData& other, CompareItemOptions options) const
|
||||
return false;
|
||||
}
|
||||
} else if (totpSettings.isNull() != other.totpSettings.isNull()) {
|
||||
// The existance of TOTP has changed between these entries
|
||||
// The existence of TOTP has changed between these entries
|
||||
return false;
|
||||
}
|
||||
if (::compare(excludeFromReports, other.excludeFromReports, options) != 0) {
|
||||
|
||||
@@ -279,7 +279,7 @@ int Metadata::autosaveDelayMin() const
|
||||
// data is not set yet, use default
|
||||
return Metadata::DefaultAutosaveDelayMin;
|
||||
}
|
||||
bool ok; // check for QString to int op failuer
|
||||
bool ok; // check for QString to int op failure
|
||||
int autosaveDelayMin = autosaveDelayMinStr.toInt(&ok);
|
||||
Q_ASSERT(ok);
|
||||
return autosaveDelayMin;
|
||||
|
||||
Reference in New Issue
Block a user