| 824 | } |
| 825 | |
| 826 | bool MyXMLVisitor::getUnderline() const |
| 827 | { |
| 828 | for (auto i = _fontElements.rbegin(), iRend = _fontElements.rend(); i != iRend; ++i) |
| 829 | { |
| 830 | if (i->line == StyleLine::UNDERLINE) |
| 831 | return true; |
| 832 | } |
| 833 | return false; |
| 834 | } |
| 835 | |
| 836 | bool MyXMLVisitor::getStrikethrough() const |
| 837 | { |