Switch to side-by-side view
--- a/src/qtgui/preview_w.cpp +++ b/src/qtgui/preview_w.cpp @@ -612,7 +612,7 @@ datebuf[0] = 0; if (!doc.fmtime.empty() || !doc.dmtime.empty()) { time_t mtime = doc.dmtime.empty() ? - atol(doc.fmtime.c_str()) : atol(doc.dmtime.c_str()); + atoll(doc.fmtime.c_str()) : atoll(doc.dmtime.c_str()); struct tm *tm = localtime(&mtime); strftime(datebuf, 99, "%Y-%m-%d %H:%M:%S", tm); }