summaryrefslogtreecommitdiff
path: root/svl/source/svdde/ddecli.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-13 15:53:52 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-13 15:58:34 +0000
commitacddd09bc2e635a63c3d924eec6026c5254cd576 (patch)
tree66c6083c5b43a2e86cc60b1cff3ea98588e1de18 /svl/source/svdde/ddecli.cxx
parentf1c162967f032fcc5e4859f67c5b614c5dd19642 (diff)
WaE: NULL vs 0 with mingw
Diffstat (limited to 'svl/source/svdde/ddecli.cxx')
-rw-r--r--svl/source/svdde/ddecli.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddecli.cxx b/svl/source/svdde/ddecli.cxx
index fba0c250d665..fd7b09c6d7fa 100644
--- a/svl/source/svdde/ddecli.cxx
+++ b/svl/source/svdde/ddecli.cxx
@@ -211,7 +211,7 @@ DdeConnection::~DdeConnection()
{
if( DdeUninitialize( pInst->hDdeInstCli ) )
{
- pInst->hDdeInstCli = NULL;
+ pInst->hDdeInstCli = 0;
if( pInst->nRefCount == 0 )
ImpDeinitInstData();
}