diff options
author | jan iversen <jani@documentfoundation.org> | 2016-03-21 13:38:42 +0100 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-03-22 16:32:19 +0100 |
commit | 0d0598fc8f7fffe90b9e14b3825f98770ce1affa (patch) | |
tree | b12f805d0048dde5a993ec84d3618574bc6782f5 /l10ntools/source/gLexUlf.l | |
parent | 3ec0b7ed0d2028517afaee5c3ffa0b9f04a68bd2 (diff) |
genlang, PO files contain both comment and resource extra
the .ulf ==> .pot keep the x-comment, therefore the memory
db is expanded with sResource and sComment.
The memory db API is changed to add the 2 new fields, which
causes a change in all callers.
Change-Id: I38527c8d2db9d56ecf9ae42550ed5420371b658e
Diffstat (limited to 'l10ntools/source/gLexUlf.l')
-rw-r--r-- | l10ntools/source/gLexUlf.l | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/l10ntools/source/gLexUlf.l b/l10ntools/source/gLexUlf.l index f6409ec359ee..c0dcf157352f 100644 --- a/l10ntools/source/gLexUlf.l +++ b/l10ntools/source/gLexUlf.l @@ -131,7 +131,5 @@ KEYID [a-zA-Z0-9_-]+ void ulf_dummyJustForCompiler() { - char *txt = NULL; - // yy_flex_strlen(txt); - yyunput(0, txt); + yyunput(0, NULL); } |