From a980b6c8aee6e3f6916dc0dc617f53e70191234c Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Fri, 15 Jul 2016 15:03:39 +0200 Subject: no need for this temporary OString Change-Id: I8b5d69f7e64a83e52a41c285f5ef186a666ccd55 --- chart2/source/controller/main/ChartController.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'chart2') diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx index a925bbb4bfd9..40166350f769 100644 --- a/chart2/source/controller/main/ChartController.cxx +++ b/chart2/source/controller/main/ChartController.cxx @@ -1050,7 +1050,7 @@ void SAL_CALL ChartController::layoutEvent( namespace { -bool lcl_isFormatObjectCommand( const OString& aCommand ) +bool lcl_isFormatObjectCommand( const OUString& aCommand ) { if( aCommand == "MainTitle" || aCommand == "SubTitle" @@ -1146,8 +1146,7 @@ void SAL_CALL ChartController::dispatch( const uno::Sequence< beans::PropertyValue >& rArgs ) throw (uno::RuntimeException, std::exception) { - //@todo avoid OString - OString aCommand( OUStringToOString( rURL.Path, RTL_TEXTENCODING_ASCII_US ) ); + OUString aCommand = rURL.Path; if(aCommand == "Paste") this->executeDispatch_Paste(); -- cgit