summaryrefslogtreecommitdiff
path: root/idl/source/prj/parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/prj/parser.cxx')
-rw-r--r--idl/source/prj/parser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/prj/parser.cxx b/idl/source/prj/parser.cxx
index dc3340a214b8..c1a309679909 100644
--- a/idl/source/prj/parser.cxx
+++ b/idl/source/prj/parser.cxx
@@ -26,7 +26,7 @@
#include <globals.hxx>
#include <osl/file.hxx>
-void SvIdlParser::ReadSvIdl( bool bImported, const OUString & rPath )
+void SvIdlParser::ReadSvIdl( const OUString & rPath )
{
rBase.SetPath(rPath); // only valid for this iteration
SvToken& rTok = rInStm.GetToken();
@@ -38,7 +38,7 @@ void SvIdlParser::ReadSvIdl( bool bImported, const OUString & rPath )
return;
Read( SvHash_module() );
- tools::SvRef<SvMetaModule> aModule = new SvMetaModule( bImported );
+ tools::SvRef<SvMetaModule> aModule = new SvMetaModule( false/*bImported*/ );
ReadModuleHeader(*aModule);
rBase.GetModuleList().push_back( aModule );
}