Skip to content

Commit efcd02f

Browse files
committed
Remove useless "undefined" in UI
1 parent fb0d479 commit efcd02f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gui/folderstatusmodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ QVariant FolderStatusModel::data(const QModelIndex &index, int role) const
298298
}
299299
}
300300
if (total <= 0) {
301-
return {};
301+
return QString();
302302
}
303303
return tr("%1 of %2 used").arg(Utility::octetsToString(used), Utility::octetsToString(total));
304304
}

0 commit comments

Comments
 (0)