diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:51:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:19 +0100 |
commit | 05f742d28b3786f44781af5b069c05c16b84decd (patch) | |
tree | dacb340f99ad4e47d20557eee04e6f69f5d15721 /include/comphelper/accessiblewrapper.hxx | |
parent | faced6b5f72b096800a232749cce6b38a76d5bac (diff) |
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'include/comphelper/accessiblewrapper.hxx')
-rw-r--r-- | include/comphelper/accessiblewrapper.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx index 8bcb914bcc29..7aa4b4418523 100644 --- a/include/comphelper/accessiblewrapper.hxx +++ b/include/comphelper/accessiblewrapper.hxx @@ -339,7 +339,7 @@ namespace comphelper ::com::sun::star::uno::WeakReference< ::com::sun::star::accessibility::XAccessible > m_aOwningAccessible; // the XAccessible which belongs to the XAccessibleContext which we work for AccessibleMap m_aChildrenMap; // for caching children - sal_Bool m_bTransientChildren; // are we prohibited to cache our children? + bool m_bTransientChildren; // are we prohibited to cache our children? public: /// ctor @@ -350,7 +350,7 @@ namespace comphelper /** specifies if the children are to be consideren transient (i.e.: not cached) <p>to be called only once per lifetime</p> */ - void setTransientChildren( sal_Bool _bSet = sal_True ); + void setTransientChildren( bool _bSet = true ); /** sets the XAccessible which belongs to the XAccessibleContext which we work for <p>to be called only once per lifetime</p> @@ -361,7 +361,7 @@ namespace comphelper ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > getAccessibleWrapperFor( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& _rxKey, - sal_Bool _bCreate = sal_True + bool _bCreate = true ); /// erases the given key from the map (if it is present there) |