[Libreoffice-commits] core.git: sw/source

Michael Stahl mstahl at redhat.com
Mon Jun 12 10:15:24 UTC 2017


 sw/source/filter/ww8/ww8par5.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit daa2e16d2f874508257a809aee183ffd7fd8eacf
Author: Michael Stahl <mstahl at redhat.com>
Date:   Mon Jun 12 12:13:27 2017 +0200

    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

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 '}':


More information about the Libreoffice-commits mailing list