diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-07 15:25:20 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-05-11 12:17:42 +0000 |
commit | 82d68f9cbce4073a727c43b4a8e81d39871b71eb (patch) | |
tree | 64b3a9e1092586afee46899adfd00070821613b8 /chart2 | |
parent | 19ea033f380aa196c9c868a3cdb43e967eb42abe (diff) |
convert COMMAND_ constants to scoped enum
Change-Id: I88e67f89dbbab0646e8f106dfeb32c6ee1bb0b95
Reviewed-on: https://gerrit.libreoffice.org/15671
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/main/ChartController_Window.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx index 9d0f94a71839..1e28f3f07abb 100644 --- a/chart2/source/controller/main/ChartController_Window.cxx +++ b/chart2/source/controller/main/ChartController_Window.cxx @@ -969,7 +969,7 @@ void ChartController::execute_Command( const CommandEvent& rCEvt ) } // pop-up menu - if(rCEvt.GetCommand() == COMMAND_CONTEXTMENU && !bIsAction) + if(rCEvt.GetCommand() == CommandEventId::ContextMenu && !bIsAction) { { SolarMutexGuard aGuard; @@ -1259,10 +1259,10 @@ void ChartController::execute_Command( const CommandEvent& rCEvt ) } } } - else if( ( rCEvt.GetCommand() == COMMAND_STARTEXTTEXTINPUT ) || - ( rCEvt.GetCommand() == COMMAND_EXTTEXTINPUT ) || - ( rCEvt.GetCommand() == COMMAND_ENDEXTTEXTINPUT ) || - ( rCEvt.GetCommand() == COMMAND_INPUTCONTEXTCHANGE ) ) + else if( ( rCEvt.GetCommand() == CommandEventId::StartExtTextInput ) || + ( rCEvt.GetCommand() == CommandEventId::ExtTextInput ) || + ( rCEvt.GetCommand() == CommandEventId::EndExtTextInput ) || + ( rCEvt.GetCommand() == CommandEventId::InputContextChange ) ) { //#i84417# enable editing with IME SolarMutexGuard aGuard; |