summaryrefslogtreecommitdiff
path: root/l10ntools/source/export.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/source/export.cxx')
-rw-r--r--l10ntools/source/export.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 6f8c8b828f60..170d76f3f610 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -108,16 +108,16 @@ int Parse( int nTyp, const char *pTokenText ){
global::exporter->Execute( nTyp , pTokenText );
return 1;
}
+
void Close(){
- global::exporter->pParseQueue->Close();
+ global::exporter->GetParseQueue()->Close();
global::exporter.reset();
// avoid nontrivial Export dtor being executed during exit
}
int WorkOnTokenSet( int nTyp, char *pTokenText )
{
-
- global::exporter->pParseQueue->Push( QueueEntry( nTyp , OString(pTokenText) ) );
+ global::exporter->GetParseQueue()->Push( QueueEntry( nTyp , OString(pTokenText) ) );
return 1;
}