summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-19 14:42:35 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:20 +0200
commit634081d5de8a7bf88c5d21b5b9082d4eea7da02c (patch)
tree7deedc6de1e4b7721a5c077d67504cfae10623ba /include
parentd9fd1d531036c3014de081ab012c556c2a416039 (diff)
sal_Bool->bool
Change-Id: I65c60ae987263b96ac1a0d727f5c4e33431d7767
Diffstat (limited to 'include')
-rw-r--r--include/editeng/AccessibleParaManager.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/editeng/AccessibleParaManager.hxx b/include/editeng/AccessibleParaManager.hxx
index 28df246facae..3881a22d81b0 100644
--- a/include/editeng/AccessibleParaManager.hxx
+++ b/include/editeng/AccessibleParaManager.hxx
@@ -63,7 +63,7 @@ namespace accessibility
Hands off also from the implementation pointer if this
returns sal_False!
*/
- sal_Bool is() const { return mxRef.is(); }
+ bool is() const { return mxRef.is(); }
InterfaceType* operator->() const { return mpImpl; }
InterfaceType& operator*() const { return *mpImpl; }
::com::sun::star::uno::Reference< UnoInterfaceType >& getRef() { return mxRef; }
@@ -182,8 +182,8 @@ namespace accessibility
const ::com::sun::star::uno::Any& rNewValue = ::com::sun::star::uno::Any(),
const ::com::sun::star::uno::Any& rOldValue = ::com::sun::star::uno::Any() ) const;
- static sal_Bool IsReferencable( WeakPara::HardRefType aChild );
- sal_Bool IsReferencable( sal_Int32 nChild ) const;
+ static bool IsReferencable( WeakPara::HardRefType aChild );
+ bool IsReferencable( sal_Int32 nChild ) const;
static void ShutdownPara( const WeakChild& rChild );
Child CreateChild( sal_Int32 nChild,
@@ -195,7 +195,7 @@ namespace accessibility
// forwarder to all paragraphs
/// Make all children active and editable (or off)
- void SetActive( sal_Bool bActive = sal_True );
+ void SetActive( bool bActive = true );
/// Set state of all children
void SetState( const sal_Int16 nStateId );
/// Unset state of all children
@@ -324,7 +324,7 @@ namespace accessibility
sal_Int32 mnFocusedChild;
// whether children are active and editable
- sal_Bool mbActive;
+ bool mbActive;
};
} // end of namespace accessibility