Kaydet (Commit) 5c20d05f authored tarafından Noel Power's avatar Noel Power

try fix build failure ( on some platforms ) uno::makeAny( 1 )

Change-Id: I0107fc919a785195a1247c08ae019ed3f48f7e7d
üst ce5c02e8
......@@ -196,7 +196,8 @@ ScVbaNames::Add( const css::uno::Any& Name ,
if ( !xRange.is() )
xRange = new ScVbaRange( mxParent, mxContext, xUnoRange );
uno::Reference< excel::XRange > xArea( xRange->Areas( uno::makeAny( 1 ) ), uno::UNO_QUERY );
uno::Reference< excel::XRange > xArea( xRange->Areas( uno::makeAny( sal_Int32(1) ) ), uno::UNO_QUERY );
uno::Any xAny = xArea->getCellRange() ;
uno::Reference< sheet::XCellRangeAddressable > thisRangeAdd( xAny, ::uno::UNO_QUERY_THROW);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment