diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-22 21:44:29 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-04-22 21:44:29 +0300 |
commit | 7bec04312dcef51c8f7b248231e139178fdeada1 (patch) | |
tree | fadf3ac67642710504cacbbf562ff52fcb802a60 | |
parent | e0be9a035a82131628ad07ae05be8bf322730f66 (diff) |
WaE: initialization of pointer to null from a constant boolean expression
-rw-r--r-- | shell/source/backends/macbe/macbackend.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/macbe/macbackend.cxx b/shell/source/backends/macbe/macbackend.cxx index 055628f936bf..aaf7ebfb2e52 100644 --- a/shell/source/backends/macbe/macbackend.cxx +++ b/shell/source/backends/macbe/macbackend.cxx @@ -406,7 +406,7 @@ css::uno::Any MacOSXBackend::getPropertyValue( CFDictionaryRef rProxyDict = SCDynamicStoreCopyProxies(NULL); if (!rProxyDict) - rExceptionsList = false; + rExceptionsList = 0; else rExceptionsList = (CFArrayRef) CFDictionaryGetValue(rProxyDict, kSCPropNetProxiesExceptionsList); |