summaryrefslogtreecommitdiff
path: root/sc/source/ui/drawfunc/fuins2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/drawfunc/fuins2.cxx')
-rw-r--r--sc/source/ui/drawfunc/fuins2.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/drawfunc/fuins2.cxx b/sc/source/ui/drawfunc/fuins2.cxx
index d2d23823b8c9..dfee80e32e7d 100644
--- a/sc/source/ui/drawfunc/fuins2.cxx
+++ b/sc/source/ui/drawfunc/fuins2.cxx
@@ -632,12 +632,12 @@ FuInsertChart::FuInsertChart(ScTabViewShell* pViewSh, vcl::Window* pWin, ScDrawV
uno::Any* pArray = aSeq.getArray();
beans::PropertyValue aParam1;
aParam1.Name = "ParentWindow";
- aParam1.Value = uno::makeAny(xDialogParentWindow);
+ aParam1.Value <<= xDialogParentWindow;
beans::PropertyValue aParam2;
aParam2.Name = "ChartModel";
- aParam2.Value = uno::makeAny(xChartModel);
- pArray[0] = uno::makeAny(aParam1);
- pArray[1] = uno::makeAny(aParam2);
+ aParam2.Value <<= xChartModel;
+ pArray[0] <<= aParam1;
+ pArray[1] <<= aParam2;
xInit->initialize( aSeq );
// try to set the dialog's position so it doesn't hide the chart
211d4bff2912f1bd6'>Don't bother with a separate dynamically loaded scopencl libraryTor Lillqvist 2014-09-13Fix circular deps when opencl is disabledPeter Foley