mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 05:54:39 -04:00
Include lastTimeOpened in plain text comic info
This commit is contained in:
@ -109,6 +109,9 @@ QString ComicDB::toTXT()
|
|||||||
if (!info.notes.isNull())
|
if (!info.notes.isNull())
|
||||||
txt.append(QString("notes:%1\r\n").arg(info.notes.toString()));
|
txt.append(QString("notes:%1\r\n").arg(info.notes.toString()));
|
||||||
|
|
||||||
|
if (!info.lastTimeOpened.isNull())
|
||||||
|
txt.append(QString("lastTimeOpened:%1\r\n").arg(info.lastTimeOpened.toULongLong()));
|
||||||
|
|
||||||
return txt;
|
return txt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user