From 1c0f94abb59296ec9e686dd3ea6b2cd963923631 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sat, 19 Apr 2014 07:40:53 +0200 Subject: blind fix for breaking windows build error C2556: 'sal_Bool MNS_InitXPCOM(sal_Bool *)' : overloaded function differs only by return type from 'bool MNS_InitXPCOM(sal_Bool *)' error C2371: 'MNS_InitXPCOM' : redefinition; different basic types error C2440: 'initializing' : cannot convert from 'bool *' to 'sal_Bool *' Change-Id: Ica225dd47e8d90833ce56c0bd4ee38e5013196f6 --- connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx') diff --git a/connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx b/connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx index 7b27b45c6cc1..2892207688e4 100644 --- a/connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx +++ b/connectivity/source/drivers/mozab/bootstrap/MNSInit.hxx @@ -26,7 +26,7 @@ bool MNS_Init(bool& aProfileExists); bool MNS_Term(bool aForce = false); -bool MNS_InitXPCOM(sal_Bool* aProfileExists); +bool MNS_InitXPCOM(bool* aProfileExists); typedef struct UI_Thread_ARGS { -- cgit