From d4c1975fc0411cdd30ea96fa188ac77c099bd58e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 30 May 2018 13:57:02 +0100 Subject: tdf#117864 TransferableHelper::GetSystemClipboard requires a focus window Change-Id: Ibd9b9218cf12e80db1fc9a70bdbab38d3df950f7 Reviewed-on: https://gerrit.libreoffice.org/55075 Tested-by: Jenkins Reviewed-by: Christian Lohmaier --- chart2/source/controller/main/ChartController_Tools.cxx | 3 ++- chart2/source/controller/sidebar/ChartSeriesPanel.cxx | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/chart2/source/controller/main/ChartController_Tools.cxx b/chart2/source/controller/main/ChartController_Tools.cxx index d06524480847..ae1d02a106fa 100644 --- a/chart2/source/controller/main/ChartController_Tools.cxx +++ b/chart2/source/controller/main/ChartController_Tools.cxx @@ -522,7 +522,8 @@ void ChartController::executeDispatch_Copy() } if ( xTransferable.is() ) { - Reference< datatransfer::clipboard::XClipboard > xClipboard( TransferableHelper::GetSystemClipboard() ); + SolarMutexGuard aSolarGuard; + Reference xClipboard(GetChartWindow()->GetClipboard()); if ( xClipboard.is() ) { xClipboard->setContents( xTransferable, Reference< datatransfer::clipboard::XClipboardOwner >() ); diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx index 023f548b485a..fb64cb64b5ac 100644 --- a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx +++ b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx @@ -267,6 +267,10 @@ OUString getCID(const css::uno::Reference& xModel) OUString aCID; aAny >>= aCID; + + if (aCID.isEmpty()) + return OUString(); + #ifdef DBG_UTIL ObjectType eType = ObjectIdentifier::getObjectType(aCID); assert(eType == OBJECTTYPE_DATA_SERIES); -- cgit v1.2.3