summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-03-09 19:43:50 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-03-09 19:45:11 +0900
commit95184c4c45b69915cd78e10c7f0b6fcd1245d738 (patch)
tree925179dbe0edd5aff76e410ca78e9633035b747d /svx/inc
parent57037ea47fc203db08b2cf4a57c305df0a156307 (diff)
sal_Bool to bool
Change-Id: I76139eb5878deebefcf20efaa3be78e800a85c01
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/svx/AccessibleControlShape.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/inc/svx/AccessibleControlShape.hxx b/svx/inc/svx/AccessibleControlShape.hxx
index 79a5475f7839..a1df3ff8bd42 100644
--- a/svx/inc/svx/AccessibleControlShape.hxx
+++ b/svx/inc/svx/AccessibleControlShape.hxx
@@ -139,7 +139,7 @@ protected:
sal_Bool ensureControlModelAccess( ) SAL_THROW(( ));
/// ensures that we're listening for the given property if(and only if!) necessary
- sal_Bool ensureListeningState( const sal_Bool _bCurrentlyListening, const sal_Bool _bNeedNewListening,
+ bool ensureListeningState( const bool _bCurrentlyListening, const bool _bNeedNewListening,
const ::rtl::OUString& _rPropertyName );
/// starts multiplexing the state changes of our aggregate context
@@ -184,11 +184,11 @@ private:
::comphelper::OWrappedAccessibleChildrenManager*
m_pChildManager;
- sal_Bool m_bListeningForName : 1; // are we currently listening for changes of the "Name" property?
- sal_Bool m_bListeningForDesc : 1; // are we currently listening for changes of the "HelpText" property?
- sal_Bool m_bMultiplexingStates : 1; // are we currently multiplexing state changes of the native context?
- sal_Bool m_bDisposeNativeContext : 1; // do we need to dispose mxNativeContextComponent?
- sal_Bool m_bWaitingForControl : 1; // if we are created before our control exists, we need to wait for it to appear ...
+ bool m_bListeningForName : 1; // are we currently listening for changes of the "Name" property?
+ bool m_bListeningForDesc : 1; // are we currently listening for changes of the "HelpText" property?
+ bool m_bMultiplexingStates : 1; // are we currently multiplexing state changes of the native context?
+ bool m_bDisposeNativeContext : 1; // do we need to dispose mxNativeContextComponent?
+ bool m_bWaitingForControl : 1; // if we are created before our control exists, we need to wait for it to appear ...
private:
/** Don't use the default constructor. Use the public constructor that