diff options
Diffstat (limited to 'sfx2/source/view/lokcharthelper.cxx')
-rw-r--r-- | sfx2/source/view/lokcharthelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/lokcharthelper.cxx b/sfx2/source/view/lokcharthelper.cxx index f6dd091ebd87..0ae4d9ae8bf2 100644 --- a/sfx2/source/view/lokcharthelper.cxx +++ b/sfx2/source/view/lokcharthelper.cxx @@ -42,7 +42,7 @@ css::uno::Reference<css::frame::XController>& LokChartHelper::GetXController() ::css::uno::Reference< ::css::frame::XController > xChartController = xChart->getCurrentController(); if( xChartController.is() ) { - mxController = xChartController; + mxController = std::move(xChartController); } } } |