| 707 | //////////////////////////////// |
| 708 | |
| 709 | void MessageParser::parseAppMsgText(const WXAPPMSG& appMsg, const XmlParser& xmlParser, const Session& session, TemplateValues& tv) const |
| 710 | { |
| 711 | std::string title; |
| 712 | xmlParser.parseNodeValue("/msg/appmsg/title", title); |
| 713 | xmlParser.parseNodeValue("/msg/appmsg/title", title); |
| 714 | tv["%%MESSAGE%%"] = title.empty() ? getLocaleString("[Link]") : title; |
| 715 | } |
| 716 | |
| 717 | void MessageParser::parseAppMsgImage(const WXAPPMSG& appMsg, const XmlParser& xmlParser, const Session& session, TemplateValues& tv) const |
| 718 | { |
nothing calls this directly
no test coverage detected