summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/defaultforminspection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/defaultforminspection.cxx')
-rw-r--r--extensions/source/propctrlr/defaultforminspection.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/defaultforminspection.cxx b/extensions/source/propctrlr/defaultforminspection.cxx
index 7fb4906752b4..c5346473d0b4 100644
--- a/extensions/source/propctrlr/defaultforminspection.cxx
+++ b/extensions/source/propctrlr/defaultforminspection.cxx
@@ -59,8 +59,8 @@ namespace pcr
//= DefaultFormComponentInspectorModel
//====================================================================
//--------------------------------------------------------------------
- DefaultFormComponentInspectorModel::DefaultFormComponentInspectorModel( const Reference< XComponentContext >& _rxContext, bool _bUseFormFormComponentHandlers )
- :ImplInspectorModel( _rxContext )
+ DefaultFormComponentInspectorModel::DefaultFormComponentInspectorModel( bool _bUseFormFormComponentHandlers )
+ :ImplInspectorModel()
,m_bUseFormComponentHandlers( _bUseFormFormComponentHandlers )
,m_bConstructed( false )
,m_pInfoService( new OPropertyInfoService )
@@ -99,9 +99,9 @@ namespace pcr
}
//------------------------------------------------------------------------
- Reference< XInterface > SAL_CALL DefaultFormComponentInspectorModel::Create( const Reference< XComponentContext >& _rxContext )
+ Reference< XInterface > SAL_CALL DefaultFormComponentInspectorModel::Create( const Reference< XComponentContext >& )
{
- return *new DefaultFormComponentInspectorModel( _rxContext );
+ return *new DefaultFormComponentInspectorModel();
}
//--------------------------------------------------------------------