diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-03 11:51:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-03 11:51:01 +0200 |
commit | 2134c9653ef1744cb6b422644673ed086f4f663d (patch) | |
tree | 0846a1a1cc1bf6ed9c6c79dcff860dcc7e89814d /svx | |
parent | d9ea0b15219d2774891e42012165ea389b9944a4 (diff) |
comphelper: sal_Bool -> bool
Change-Id: I7d7ae1f5ddff0cf7d11a407b190256f37a71d48a
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/charmapacc.cxx | 2 | ||||
-rw-r--r-- | svx/source/inc/charmapacc.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/accessibility/charmapacc.cxx b/svx/source/accessibility/charmapacc.cxx index 46db02efa01a..c0b6394ada37 100644 --- a/svx/source/accessibility/charmapacc.cxx +++ b/svx/source/accessibility/charmapacc.cxx @@ -324,7 +324,7 @@ bool SvxShowCharSetAcc::implIsSelected( sal_Int32 nAccessibleChildIndex ) throw } // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx) -void SvxShowCharSetAcc::implSelect(sal_Int32 nAccessibleChildIndex, sal_Bool bSelect) +void SvxShowCharSetAcc::implSelect(sal_Int32 nAccessibleChildIndex, bool bSelect) throw (IndexOutOfBoundsException, RuntimeException, std::exception) { if ( m_pParent ) diff --git a/svx/source/inc/charmapacc.hxx b/svx/source/inc/charmapacc.hxx index 67db8793386a..c2f5cfaebef7 100644 --- a/svx/source/inc/charmapacc.hxx +++ b/svx/source/inc/charmapacc.hxx @@ -198,7 +198,7 @@ namespace svx // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx) virtual void - implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect ) + implSelect( sal_Int32 nAccessibleChildIndex, bool bSelect ) throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; |