diff options
author | jan iversen <jani@documentfoundation.org> | 2016-03-19 16:57:19 +0100 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-03-22 16:32:19 +0100 |
commit | f7f97dadcd33ed191ef04436fe630821c2330e3d (patch) | |
tree | ae0189700a5a176bfd341d79134bb77b06d54ad6 /l10ntools/source/gConvSrc.cxx | |
parent | b3443e16c75704e547abd57e91156b76a5e5d218 (diff) |
update genlang, activated lex calls.
All lex files no longer have a special namespace, instead
yylex --> <foo>lex
and therefore unique for the linker.
Also corrected command line argument handler.
Change-Id: Idfdec97bd43f3be8d2b217b9aac1bd74b202dc93
Diffstat (limited to 'l10ntools/source/gConvSrc.cxx')
-rw-r--r-- | l10ntools/source/gConvSrc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/gConvSrc.cxx b/l10ntools/source/gConvSrc.cxx index 6b49cc53dedb..4eb41e681a43 100644 --- a/l10ntools/source/gConvSrc.cxx +++ b/l10ntools/source/gConvSrc.cxx @@ -43,10 +43,10 @@ convert_src::~convert_src() {} - +extern int srclex(void); void convert_src::execute() { - // SrcWrap::yylex(); + srclex(); } |