diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-25 14:19:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-27 12:30:26 +0200 |
commit | 57779aa0195d77239b339c6dbe17209b3f0cc4ee (patch) | |
tree | fb07a1ccf2c6394da9d4c63ca0ae139af9669e8a /chart2 | |
parent | 127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0 (diff) |
editeng: sal_Bool->bool
Change-Id: Id4174904487fc153d8e80471da7c829c52092f78
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/main/ChartController_TextEdit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/main/ChartController_TextEdit.cxx b/chart2/source/controller/main/ChartController_TextEdit.cxx index 08939aa872c2..ea3b24a417b0 100644 --- a/chart2/source/controller/main/ChartController_TextEdit.cxx +++ b/chart2/source/controller/main/ChartController_TextEdit.cxx @@ -192,7 +192,7 @@ void SAL_CALL ChartController::executeDispatch_InsertSpecialCharacter() // prevent flicker pOutlinerView->HideCursor(); - pOutliner->SetUpdateMode(sal_False); + pOutliner->SetUpdateMode(false); // delete current selection by inserting empty String, so current // attributes become unique (sel. has to be erased anyway) @@ -206,7 +206,7 @@ void SAL_CALL ChartController::executeDispatch_InsertSpecialCharacter() pOutlinerView->SetSelection(aSel); // show changes - pOutliner->SetUpdateMode(sal_True); + pOutliner->SetUpdateMode(true); pOutlinerView->ShowCursor(); } |