diff options
author | Katarina Machalkova <kmachalkova@suse.cz> | 2010-10-13 20:56:30 +0200 |
---|---|---|
committer | Katarina Machalkova <kmachalkova@suse.cz> | 2010-10-13 20:56:30 +0200 |
commit | 167c1f3a9566fdb4d197675b520b690326d8eaa9 (patch) | |
tree | 6d132fbe8552c0b5efa07ee78644e17d34afca2f | |
parent | d01643f836b8a126389bd08135c4f181ece49412 (diff) |
Fixed build of sc (ctor of XclObjAny has 2 params)
-rw-r--r-- | sc/source/filter/excel/xeescher.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xeescher.cxx b/sc/source/filter/excel/xeescher.cxx index 2ef436667491..baed64cb59ab 100644 --- a/sc/source/filter/excel/xeescher.cxx +++ b/sc/source/filter/excel/xeescher.cxx @@ -1162,7 +1162,7 @@ XclMacroHelper::SetMacroLink( const String& rMacroName ) } XclExpShapeObj::XclExpShapeObj( XclExpObjectManager& rRoot, ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape ) : - XclObjAny( rRoot ), + XclObjAny( rRoot, xShape ), XclMacroHelper( rRoot ) { if( SdrObject* pSdrObj = ::GetSdrObjectFromXShape( xShape ) ) |