Fixed a bug where the last address label wouldn't be removed

This commit is contained in:
adityapk00 2019-01-27 21:00:24 -08:00
parent db978a1548
commit e93cf27adb
1 changed files with 0 additions and 3 deletions

View File

@ -254,9 +254,6 @@ void AddressBook::readFromStorage() {
}
void AddressBook::writeToStorage() {
if (allLabels.isEmpty())
return;
QFile file(AddressBook::writeableFile());
file.open(QIODevice::ReadWrite | QIODevice::Truncate);
QDataStream out(&file); // we will serialize the data into the file