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 /sw | |
parent | 050d7fc852f1539f16a358c03e4e8ffb57891c4d (diff) |
svx: sal_Bool->bool
Change-Id: I360b459102e61562b7cd1987545288d5ce8aed6b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/uibase/docvw/SidebarTxtControlAcc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/uibase/docvw/SidebarTxtControlAcc.cxx b/sw/source/core/uibase/docvw/SidebarTxtControlAcc.cxx index b833bc708570..0ab0c43a33ae 100644 --- a/sw/source/core/uibase/docvw/SidebarTxtControlAcc.cxx +++ b/sw/source/core/uibase/docvw/SidebarTxtControlAcc.cxx @@ -253,13 +253,13 @@ void SidebarTxtControlAccessibleContext::ProcessWindowEvent( const VclWindowEven case VCLEVENT_WINDOW_GETFOCUS: case VCLEVENT_CONTROL_GETFOCUS: { - mpAccessibleTextHelper->SetFocus( sal_True ); + mpAccessibleTextHelper->SetFocus( true ); } break; case VCLEVENT_WINDOW_LOSEFOCUS: case VCLEVENT_CONTROL_LOSEFOCUS: { - mpAccessibleTextHelper->SetFocus( sal_False ); + mpAccessibleTextHelper->SetFocus( false ); } break; } |