summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-06-12 12:13:27 +0200
committerMichael Stahl <mstahl@redhat.com>2017-06-12 12:14:31 +0200
commitdaa2e16d2f874508257a809aee183ffd7fd8eacf (patch)
treebd4125aec939e51f0a5cb15f48b65aad68499b6c /sw
parent3b05c3b4b4b6c3891b4b7e88d91889cf327a34a8 (diff)
sw: GCC still complains about "multi-line comment" [-Werror=comment]
Apparently a trailing space after the "\" does not prevent the warning? Let's work around harder... Change-Id: I05239697b26cd53df719ed520826db60a7805417
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/ww8par5.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx
index daaddd7ada2f..3a8fe2915114 100644
--- a/sw/source/filter/ww8/ww8par5.cxx
+++ b/sw/source/filter/ww8/ww8par5.cxx
@@ -1045,7 +1045,7 @@ void SwWW8ImplReader::MakeTagString( OUString& rStr, const OUString& rOrg )
case 21:
rStr = rStr.replaceAt( nI, 1, "}" );
break;
- case '\\': // Tag \{|} with \
+ case '\\': // Tag \{|} with \ ...
case '{':
case '|':
case '}':