diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:04:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:08:32 +0100 |
commit | 612dac063a144506b44f4ab2afa2c5cdf9d882b4 (patch) | |
tree | 856ab6ea17ca4760995b8ca41766c5c0c2115de7 /framework | |
parent | 8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff) |
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'framework')
6 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/macros/xtypeprovider.hxx b/framework/inc/macros/xtypeprovider.hxx index 30d30d32af7e..1880cc975879 100644 --- a/framework/inc/macros/xtypeprovider.hxx +++ b/framework/inc/macros/xtypeprovider.hxx @@ -70,7 +70,7 @@ ________________________________________________________________________________ if ( pID == NULL ) \ { \ /* Create a new static ID ... */ \ - static ::cppu::OImplementationId aID( sal_False ); \ + static ::cppu::OImplementationId aID( false ); \ /* ... and set his address to static pointer! */ \ pID = &aID ; \ } \ diff --git a/framework/source/fwe/classes/actiontriggercontainer.cxx b/framework/source/fwe/classes/actiontriggercontainer.cxx index a4f58f7ba78c..1d4813597331 100644 --- a/framework/source/fwe/classes/actiontriggercontainer.cxx +++ b/framework/source/fwe/classes/actiontriggercontainer.cxx @@ -179,7 +179,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerContainer::getImplementationId() thro if ( pID == NULL ) { // Create a new static ID ... - static ::cppu::OImplementationId aID( sal_False ) ; + static ::cppu::OImplementationId aID( false ) ; // ... and set his address to static pointer! pID = &aID ; } diff --git a/framework/source/fwe/classes/actiontriggerpropertyset.cxx b/framework/source/fwe/classes/actiontriggerpropertyset.cxx index a10f90a584ae..8bbf7f3439ab 100644 --- a/framework/source/fwe/classes/actiontriggerpropertyset.cxx +++ b/framework/source/fwe/classes/actiontriggerpropertyset.cxx @@ -173,7 +173,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerPropertySet::getImplementationId() th if ( pID == NULL ) { // Create a new static ID ... - static ::cppu::OImplementationId aID( sal_False ) ; + static ::cppu::OImplementationId aID( false ) ; // ... and set his address to static pointer! pID = &aID ; } diff --git a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx index 75afc5a8effb..9307dc641d91 100644 --- a/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx +++ b/framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx @@ -165,7 +165,7 @@ Sequence< sal_Int8 > SAL_CALL ActionTriggerSeparatorPropertySet::getImplementati if ( pID == NULL ) { // Create a new static ID ... - static ::cppu::OImplementationId aID( sal_False ) ; + static ::cppu::OImplementationId aID( false ) ; // ... and set his address to static pointer! pID = &aID ; } diff --git a/framework/source/fwe/classes/rootactiontriggercontainer.cxx b/framework/source/fwe/classes/rootactiontriggercontainer.cxx index 96869c6fe39d..b64d2ea39be4 100644 --- a/framework/source/fwe/classes/rootactiontriggercontainer.cxx +++ b/framework/source/fwe/classes/rootactiontriggercontainer.cxx @@ -307,7 +307,7 @@ Sequence< sal_Int8 > SAL_CALL RootActionTriggerContainer::getImplementationId() if ( pID == NULL ) { // Create a new static ID ... - static ::cppu::OImplementationId aID( sal_False ) ; + static ::cppu::OImplementationId aID( false ) ; // ... and set his address to static pointer! pID = &aID ; } diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 0d04ba6fff11..961776fc86f2 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -3113,7 +3113,7 @@ void Frame::implts_sendFrameActionEvent( const css::frame::FrameAction& aAction // Get iterator for access to listener. ::cppu::OInterfaceIteratorHelper aIterator( *pContainer ); // Send message to all listener. - while( aIterator.hasMoreElements() == sal_True ) + while( aIterator.hasMoreElements() ) { try { |