summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-12-02 13:03:59 +0100
committerAndras Timar <andras.timar@collabora.com>2013-12-02 13:09:19 +0100
commite596cfa5bce2a958766712026db0ae74bd112975 (patch)
treef05619654ca228e8ed78eccc36578d277d8f09b9
parent0f080297e9c176f221e20c422ba77080eee8e21c (diff)
fdo#71056 add <sup> to list of inline help XML tags
Change-Id: If0937bd571658e0f76a51e44dd3fa008f701f02e
-rw-r--r--l10ntools/source/xmlparse.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx
index 13a9d8fc9a92..74f126df4694 100644
--- a/l10ntools/source/xmlparse.cxx
+++ b/l10ntools/source/xmlparse.cxx
@@ -1106,11 +1106,11 @@ static icu::UnicodeString lcl_QuotRange(
static bool lcl_isTag( const icu::UnicodeString& rString )
{
- static const int nSize = 12;
+ static const int nSize = 13;
static const icu::UnicodeString vTags[nSize] = {
"ahelp", "link", "item", "emph", "defaultinline",
"switchinline", "caseinline", "variable",
- "bookmark_value", "image", "embedvar", "alt" };
+ "bookmark_value", "image", "embedvar", "alt", "sup" };
for( int nIndex = 0; nIndex < nSize; ++nIndex )
{