diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 21:42:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-15 21:42:17 +0200 |
commit | 082664d4adb9ec1268dea7b8210fc3f9c681d3a3 (patch) | |
tree | 0ab2dd6ca10c53273f3904ed61090d8867f10914 /vcl/osx | |
parent | 960db7d4a875897addb8a28257da38138babb264 (diff) |
loplugin:salbool
Change-Id: I1ff0990052ed224a7518cd52e9b9087b5777b7b6
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/printaccessoryview.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/osx/printaccessoryview.mm b/vcl/osx/printaccessoryview.mm index 683823278153..56f6ab022f06 100644 --- a/vcl/osx/printaccessoryview.mm +++ b/vcl/osx/printaccessoryview.mm @@ -223,7 +223,7 @@ class ControllerProperties } } - void changePropertyWithBoolValue( int i_nTag, sal_Bool i_bValue ) + void changePropertyWithBoolValue( int i_nTag, bool i_bValue ) { std::map< int, rtl::OUString >::const_iterator name_it = maTagToPropertyName.find( i_nTag ); if( name_it != maTagToPropertyName.end() ) @@ -779,8 +779,8 @@ static void addSubgroup( NSView* pCurParent, long& rCurY, const rtl::OUString& r } static void addBool( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachOffset, - const rtl::OUString& rText, sal_Bool bEnabled, - const rtl::OUString& rProperty, sal_Bool bValue, + const rtl::OUString& rText, bool bEnabled, + const rtl::OUString& rProperty, bool bValue, std::vector<ColumnItem >& rRightColumn, ControllerProperties* pControllerProperties, ControlTarget* pCtrlTarget @@ -1106,7 +1106,7 @@ static void addEdit( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachO NSTabView* pTabView = [[NSTabView alloc] initWithFrame: aTabViewFrame]; [pAccessoryView addSubview: [pTabView autorelease]]; - sal_Bool bIgnoreSubgroup = sal_False; + bool bIgnoreSubgroup = false; ControllerProperties* pControllerProperties = new ControllerProperties( pController, pOp, pAccessoryView, pTabView, pState ); ControlTarget* pCtrlTarget = [[ControlTarget alloc] initWithControllerMap: pControllerProperties]; |