diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-15 20:43:17 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-15 23:07:14 +0200 |
commit | 5d95ab29f228c355029147ee083e9f222545c0ae (patch) | |
tree | 95d9e712acbc29ec147507b63cf9c5d1a54c109b | |
parent | efc8c95af4cf2e224594521094b1a8947d83399d (diff) |
MSVC complains about too many implicit conversions
Change-Id: I33b40ec877270de4ed037dfaf6652c07935a727c
-rw-r--r-- | sc/qa/extras/scdatapilottableobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/extras/scdatapilottableobj.cxx b/sc/qa/extras/scdatapilottableobj.cxx index 99067b2f3a7a..6ab1c33846a0 100644 --- a/sc/qa/extras/scdatapilottableobj.cxx +++ b/sc/qa/extras/scdatapilottableobj.cxx @@ -121,7 +121,7 @@ uno::Reference< uno::XInterface > ScDataPilotTableObj::init() uno::Reference< uno::XInterface > ScDataPilotTableObj::getSheets() { 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; } |