summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-11 09:08:55 +0200
committerNoel Grandin <noel@peralex.com>2016-02-11 10:01:46 +0200
commit6b00d851672ecdde1833cf3ce3d90e34480af5e5 (patch)
tree52968244db6b1e272f28e1ff40ee2842d72f12de /idl
parentd542cf3e63aaa1b4c200796b9151cb5a869d1ce0 (diff)
we don't use the optional "(" in import statements in .SDI files
Change-Id: I74595786754381fef8105e3acfeb0f693bdbea83
Diffstat (limited to 'idl')
-rw-r--r--idl/source/prj/database.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index e647b964a502..b6539fcd197a 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -487,8 +487,7 @@ bool SvIdlWorkingBase::ReadSvIdl( SvTokenStream & rInStm, bool bImported, const
if( pTok->Is( SvHash_import() ) )
{
rInStm.GetToken_Next();
- bOk = rInStm.Read( '(' ); // optional
- pTok = bOk ? rInStm.GetToken_Next() : nullptr;
+ pTok = rInStm.GetToken_Next();
if( pTok && pTok->IsString() )
{
OUString aFullName;