Kaydet (Commit) 5d95ab29 authored tarafından Michael Stahl's avatar Michael Stahl

MSVC complains about too many implicit conversions

Change-Id: I33b40ec877270de4ed037dfaf6652c07935a727c
üst efc8c95a
...@@ -121,7 +121,7 @@ uno::Reference< uno::XInterface > ScDataPilotTableObj::init() ...@@ -121,7 +121,7 @@ uno::Reference< uno::XInterface > ScDataPilotTableObj::init()
uno::Reference< uno::XInterface > ScDataPilotTableObj::getSheets() uno::Reference< uno::XInterface > ScDataPilotTableObj::getSheets()
{ {
uno::Reference< sheet::XSpreadsheetDocument > xDoc(mxComponent, UNO_QUERY_THROW); uno::Reference< sheet::XSpreadsheetDocument > xDoc(mxComponent, UNO_QUERY_THROW);
uno::Reference< uno::XInterface > xSheets = xDoc->getSheets(); uno::Reference< uno::XInterface > xSheets(xDoc->getSheets());
return xSheets; return xSheets;
} }
......
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