diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-07-15 15:03:39 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-07-16 18:27:14 +0200 |
commit | a980b6c8aee6e3f6916dc0dc617f53e70191234c (patch) | |
tree | 4f0b3e62e84f6c44b141cf553a74c67723be19ee /chart2/source/controller/main | |
parent | 8781dbe09981bbca4b5ed792fdb6c82dc1b17d27 (diff) |
no need for this temporary OString
Change-Id: I8b5d69f7e64a83e52a41c285f5ef186a666ccd55
Diffstat (limited to 'chart2/source/controller/main')
-rw-r--r-- | chart2/source/controller/main/ChartController.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
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(); |