summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2012-10-03 10:25:46 +0200
committerAndras Timar <atimar@suse.com>2012-10-03 19:43:51 +0200
commit8ca8ea20e0aeeb26f085cbf331bf92003e1e9648 (patch)
treee1ea87b04c6200f496143674c1336237fe91d107 /l10ntools
parent78c7bbc3ce92493ca98c605f92733e31ad87ef70 (diff)
Correct ulfex to ignore comments
Change-Id: I50e41a3946ff885783006018f7b6ff2945cc7dfc
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/lngmerge.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/lngmerge.cxx b/l10ntools/source/lngmerge.cxx
index 264b50c74f56..fcab6966aef1 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;
}