From b2fdaed46509127ec3ac2fb87404bc1b51d77778 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 20 Apr 2012 20:01:54 +0100 Subject: WaE: MSVC2008 C2220 unsafe mix of types in operation --- basic/inc/basic/sbmod.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basic/inc') diff --git a/basic/inc/basic/sbmod.hxx b/basic/inc/basic/sbmod.hxx index 24700e9ebed3..392082baa3d1 100644 --- a/basic/inc/basic/sbmod.hxx +++ b/basic/inc/basic/sbmod.hxx @@ -73,7 +73,7 @@ protected: SbiImage* pImage; // the Image SbiBreakpoints* pBreaks; // Breakpoints SbClassData* pClassData; - sal_Bool mbVBACompat; + bool mbVBACompat; sal_Int32 mnType; SbxObjectRef pDocObject; // an impl object ( used by Document Modules ) bool bIsProxyModule; @@ -139,8 +139,8 @@ public: sal_Bool ExceedsLegacyModuleSize(); void fixUpMethodStart( bool bCvtToLegacy, SbiImage* pImg = NULL ) const; bool HasExeCode(); - sal_Bool IsVBACompat() const; - void SetVBACompat( sal_Bool bCompat ); + bool IsVBACompat() const; + void SetVBACompat( bool bCompat ); sal_Int32 GetModuleType() { return mnType; } void SetModuleType( sal_Int32 nType ) { mnType = nType; } bool isProxyModule() { return bIsProxyModule; } -- cgit