From 9e899c1d1505bd60f9d4f0ce64d3d65f90a6cada Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Sun, 20 Sep 2020 19:05:22 -0700 Subject: [PATCH] Change apostrophes in Daily page statistics tooltips to HTML encoded apos; --- oscar/daily.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 6048b5ce..613a6de7 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -1345,6 +1345,10 @@ QString Daily::getStatisticsInfo(Day * day) } } +// QString oldtip = tooltip; + tooltip.replace("'", "'"); +// qDebug() << schema::channel[code].label() << "old tooltip" << oldtip << "tooltip" << tooltip ; + html+=QString("%1%2%3%4%5") .arg(schema::channel[code].label()) .arg(mn,0,'f',2)