restable: cant use reslitdateformat which is html. Use setPlainText when displaying doc text in the detail area
This commit is contained in:
parent
f45f5a0fd2
commit
ce6c0edc91
@ -220,7 +220,8 @@ static string datetimegetter(const string&, const Rcl::Doc& doc)
|
|||||||
time_t mtime = doc.dmtime.empty() ?
|
time_t mtime = doc.dmtime.empty() ?
|
||||||
atoll(doc.fmtime.c_str()) : atoll(doc.dmtime.c_str());
|
atoll(doc.fmtime.c_str()) : atoll(doc.dmtime.c_str());
|
||||||
struct tm *tm = localtime(&mtime);
|
struct tm *tm = localtime(&mtime);
|
||||||
datebuf = utf8datestring(prefs.reslistdateformat.c_str(), tm);
|
// Can't use reslistdateformat because it's html ( etc.)
|
||||||
|
datebuf = utf8datestring("%Y-%m-%d %H:%M:%S", tm);
|
||||||
}
|
}
|
||||||
return datebuf;
|
return datebuf;
|
||||||
}
|
}
|
||||||
@ -899,7 +900,7 @@ void ResTable::onTableView_currentChanged(const QModelIndex& index)
|
|||||||
m_rowchangefromkbd = false;
|
m_rowchangefromkbd = false;
|
||||||
bool loadok = rcldb->getDocRawText(m_detaildoc);
|
bool loadok = rcldb->getDocRawText(m_detaildoc);
|
||||||
if (loadok) {
|
if (loadok) {
|
||||||
m_detail->setText(u8s2qs(m_detaildoc.text));
|
m_detail->setPlainText(u8s2qs(m_detaildoc.text));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
m_pager->displaySingleDoc(theconfig, m_detaildocnum, m_detaildoc,
|
m_pager->displaySingleDoc(theconfig, m_detaildocnum, m_detaildoc,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user