diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-06 23:10:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-07 07:48:12 +0200 |
commit | e294fa9283071cb2816b6d8c759ed76ee552410e (patch) | |
tree | 10fc4d353de9409d769e74675536b8be4acf7c03 /idl/source/cmptools/lex.cxx | |
parent | af1be90e528ceeca70ee8f266fc6f6d8682b2c0d (diff) |
Replace GetAppData(SHL_IDL) with an rtl::Static
Change-Id: Ia7a75c4686734aa811006858343666d2edfde8a1
Diffstat (limited to 'idl/source/cmptools/lex.cxx')
-rw-r--r-- | idl/source/cmptools/lex.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx index ef606941af2d..571f4c133322 100644 --- a/idl/source/cmptools/lex.cxx +++ b/idl/source/cmptools/lex.cxx @@ -342,8 +342,8 @@ bool SvTokenStream::MakeToken( SvToken & rToken ) else { sal_uInt32 nHashId; - if( IDLAPP->pHashTable->Test( aStr, &nHashId ) ) - rToken.SetHash( IDLAPP->pHashTable->Get( nHashId ) ); + if( GetIdlApp().pHashTable->Test( aStr, &nHashId ) ) + rToken.SetHash( GetIdlApp().pHashTable->Get( nHashId ) ); else { rToken.nType = SVTOKEN_IDENTIFIER; |