diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-02-12 16:31:21 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-02-12 16:31:28 +0100 |
commit | 88be7d32f30b08da4399f6d67d8d494dcfcc34b5 (patch) | |
tree | 54d4c0bf39221bf36c5a6d027194d40c440e17f6 /idl/source/objects | |
parent | 6842be374c0175bd19759f03138e7b9ff40cd083 (diff) |
Simplify this
Change-Id: I341f4a74062e78f6a4d23ca24d635c6a95fb90cb
Diffstat (limited to 'idl/source/objects')
-rw-r--r-- | idl/source/objects/module.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx index 43a6869efa65..4b975104836b 100644 --- a/idl/source/objects/module.cxx +++ b/idl/source/objects/module.cxx @@ -319,8 +319,7 @@ sal_Bool SvMetaModule::ReadSvIdl( SvIdlDataBase & rBase, SvTokenStream & rInStm sal_uInt32 nTokPos = rInStm.Tell(); SvToken * pTok = rInStm.GetToken_Next(); - sal_Bool bOk = sal_False; - bOk = pTok->Is( SvHash_module() ); + sal_Bool bOk = pTok->Is( SvHash_module() ); if( bOk ) { pTok = rInStm.GetToken_Next(); |