1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

"show footnote toast" option

This commit is contained in:
Nikolay Pultsin 2015-04-21 23:42:43 +01:00
parent eff5fb1915
commit b16273812e
9 changed files with 49 additions and 10 deletions

View file

@ -189,7 +189,7 @@ void FB2BookReader::startElementHandler(int tag, const char **xmlattributes) {
if (ref[0] == '#') {
const char *type = attributeValue(xmlattributes, "type");
static const std::string NOTE = "note";
if ((type != 0) && (NOTE == type)) {
if (type != 0 && NOTE == type) {
myHyperlinkType = FOOTNOTE;
} else {
myHyperlinkType = INTERNAL_HYPERLINK;