[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Oct 3 07:42:06 PDT 2012
l10ntools/source/lngmerge.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e3bf6418a86cb0d9771f3a7b715e894bc02ae313
Author: Zolnai Tamás <zolnaitamas2000 at 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;
}
More information about the Libreoffice-commits
mailing list