FIlename is now remembered and used by save. Save as added.

This commit is contained in:
Eelke Klein 2017-01-21 08:09:12 +01:00
parent 35932e7a8d
commit 69ac154b07
11 changed files with 539 additions and 169 deletions

View file

@ -54,6 +54,9 @@ QVariant QueryResultModel::data(const QModelIndex &index, int role) const
s = (s == "t") ? "TRUE" : "FALSE";
// intentional fall through
default:
if (s.length() > 256) {
s.truncate(256);
}
r = s;
}