diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-03 11:46:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:13 +0200 |
commit | 050d7fc852f1539f16a358c03e4e8ffb57891c4d (patch) | |
tree | 1e408d0ed742ea26a7f21e7ebea26f58b9c359d8 /include/editeng/AccessibleContextBase.hxx | |
parent | 7ad8e33c0f00af96ae5ee35fb360901803c3863b (diff) |
editeng: sal_Bool->bool
Change-Id: I7a7b5e9ae1762cace1f87b379b32398b231745fd
Diffstat (limited to 'include/editeng/AccessibleContextBase.hxx')
-rw-r--r-- | include/editeng/AccessibleContextBase.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/AccessibleContextBase.hxx b/include/editeng/AccessibleContextBase.hxx index 4051929c4b65..b02c0cf68bd6 100644 --- a/include/editeng/AccessibleContextBase.hxx +++ b/include/editeng/AccessibleContextBase.hxx @@ -133,7 +133,7 @@ public: If the specified state changed its value due to this call <TRUE/> is returned, otherwise <FALSE/>. */ - virtual sal_Bool SetState (sal_Int16 aState); + virtual bool SetState (sal_Int16 aState); /** Reset the specified state (turn it off) and send events to all listeners to inform them of the change. @@ -145,7 +145,7 @@ public: If the specified state changed its value due to this call <TRUE/> is returned, otherwise <FALSE/>. */ - virtual sal_Bool ResetState (sal_Int16 aState); + virtual bool ResetState (sal_Int16 aState); /** Return the state of the specified state. @@ -156,7 +156,7 @@ public: A value of <TRUE/> indicates that the state is set. A <FALSE/> value indicates an unset state. */ - sal_Bool GetState (sal_Int16 aState); + bool GetState (sal_Int16 aState); /** Replace the current relation set with the specified one. Send events for relations that are not in both sets. @@ -334,7 +334,7 @@ protected: @return TRUE, if the object is disposed or in the course of being disposed. Otherwise, FALSE is returned. */ - sal_Bool IsDisposed (void); + bool IsDisposed (void); /** sets the role as returned by XaccessibleContext::getAccessibleRole |