l10ntools/source/lngmerge.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e3bf6418a86cb0d9771f3a7b715e894bc02ae313
Author: Zolnai Tamás <zolnaitamas2...@gmail.com>
Date:   Wed Oct 3 10:25:46 2012 +0200

    Correct ulfex to ignore comments
    
    Change-Id: I50e41a3946ff885783006018f7b6ff2945cc7dfc

diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx
index 264b50c..fcab696 100644
--- a/l10ntools/source/lngmerge.cxx
+++ b/l10ntools/source/lngmerge.cxx
@@ -232,7 +232,7 @@ sal_Bool LngParser::Merge(
             {
                 sal_Int32 n = 0;
                 rtl::OString sLang(sLine.getToken(0, '=', n));
-                if (n == -1)
+                if (n == -1 || static_cast<bool>(sLine.match("/*")))
                 {
                     ++nPos;
                 }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to