diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-03 13:21:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:13 +0200 |
commit | ea2fb5f8f9ea44d7da5f9d34760e470d696f587d (patch) | |
tree | 6d0259df92cab5e4fc6027e3a9cc39269f627c28 /sd | |
parent | 050d7fc852f1539f16a358c03e4e8ffb57891c4d (diff) |
svx: sal_Bool->bool
Change-Id: I360b459102e61562b7cd1987545288d5ce8aed6b
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/accessibility/AccessibleOutlineView.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/accessibility/AccessibleOutlineView.cxx b/sd/source/ui/accessibility/AccessibleOutlineView.cxx index c37ab858f765..0f1cecbbfc62 100644 --- a/sd/source/ui/accessibility/AccessibleOutlineView.cxx +++ b/sd/source/ui/accessibility/AccessibleOutlineView.cxx @@ -220,7 +220,7 @@ void AccessibleOutlineView::Activated (void) SolarMutexGuard aGuard; // delegate listener handling to children manager. - maTextHelper.SetFocus(sal_True); + maTextHelper.SetFocus(true); } void AccessibleOutlineView::Deactivated (void) @@ -228,7 +228,7 @@ void AccessibleOutlineView::Deactivated (void) SolarMutexGuard aGuard; // delegate listener handling to children manager. - maTextHelper.SetFocus(sal_False); + maTextHelper.SetFocus(false); } void SAL_CALL AccessibleOutlineView::disposing (void) |