summaryrefslogtreecommitdiff
path: root/cli_ure/source
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-10-24 21:08:42 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-24 21:58:26 +0200
commitd59379a70ab4d7b43237bfce6e526fc09c94ec8b (patch)
tree6062d0b8d90fd6605f7aa3dcc532d189ac377b95 /cli_ure/source
parent4a2bfe3d223e08d6dc7b7fef812625652eec19fc (diff)
cli_ure: warning C4965: implicit box of integer 0
Change-Id: I0ccc91ea686e599171845ff2cff5e536bbdb7b77
Diffstat (limited to 'cli_ure/source')
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli_ure/source/uno_bridge/cli_proxy.cxx b/cli_ure/source/uno_bridge/cli_proxy.cxx
index 808e5fef3924..aaa59e9f9971 100644
--- a/cli_ure/source/uno_bridge/cli_proxy.cxx
+++ b/cli_ure/source/uno_bridge/cli_proxy.cxx
@@ -261,7 +261,7 @@ bool UnoInterfaceProxy::CanCastTo(System::Type^ fromType,
// handle regular exception from target
OSL_ENSURE(
- 0 == pException,
+ nullptr == pException,
OUStringToOString(
mapCliString( pException->ToString()),
RTL_TEXTENCODING_UTF8 ).getStr() );