From 4043af877587622935be828049b7b18cc27ad1d8 Mon Sep 17 00:00:00 2001 From: jan iversen Date: Mon, 14 Mar 2016 23:35:34 +0100 Subject: genLang update Last singleton gone, structure is now handler (local in gLang.cxx) holds a variable of l10nMem a temporary convert_gen variable (to analyze file) l10nMem contains hash list of all PO information convert_xxx is inherited from convert_gen and instanciated with a static function convert_gen::createInstance the lex functions (in c) uses a "this" pointer to find back to the class. This needs to be done better. l10nMem contains a link to convert_PO, to save files, this needs to be split. Change-Id: I3ad31aac27aac739845062f8da61c8c1c3bf9c31 --- l10ntools/source/gLexUlf.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'l10ntools/source/gLexUlf.l') diff --git a/l10ntools/source/gLexUlf.l b/l10ntools/source/gLexUlf.l index bb204f2154d8..45bc99cf49ca 100644 --- a/l10ntools/source/gLexUlf.l +++ b/l10ntools/source/gLexUlf.l @@ -26,8 +26,8 @@ #include "gL10nMem.hxx" #include "gConvUlf.hxx" -#define IMPLptr convert_gen_impl::mcImpl -#define LOCptr ((convert_ulf *)convert_gen_impl::mcImpl) +#define IMPLptr convert_gen::mcImpl +#define LOCptr ((convert_ulf *)convert_gen::mcImpl) /* enlarge token buffer to tokenize whole std::strings */ #undef YYLMAX -- cgit