diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-03 21:16:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-03 21:16:46 +0200 |
commit | b99638665a0f286b29a2cb8827f0ea80bebd4705 (patch) | |
tree | 772c80e2457b6af24aec6c0288add7e8d05f518b /idl/source/objects/module.cxx | |
parent | 8b7ec376c38886ed26520034db35ce094b94c114 (diff) |
-Werror,-Wunused-private-field
Change-Id: Ifc3cbc210da3bc342cd17a70284ce88ad22455fd
Diffstat (limited to 'idl/source/objects/module.cxx')
-rw-r--r-- | idl/source/objects/module.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx index 6bd316c73cc5..573fc6ddac27 100644 --- a/idl/source/objects/module.cxx +++ b/idl/source/objects/module.cxx @@ -29,9 +29,8 @@ TYPEINIT1( SvMetaModule, SvMetaExtern ); -SvMetaModule::SvMetaModule( const OUString & rIdlFileName, bool bImp ) - : aIdlFileName( rIdlFileName ) - , bImported( bImp ), bIsModified( false ) +SvMetaModule::SvMetaModule( bool bImp ) + : bImported( bImp ), bIsModified( false ) { } |