diff options
author | Caolán McNamara <cmc@openoffice.org> | 2010-08-03 12:19:44 +0100 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2010-08-03 12:19:44 +0100 |
commit | 5f31862d1d90a95359c1b41c4d379192cc6e00be (patch) | |
tree | 7f57a2fa80f39ed19bc1ac87b8e410c8e440c7c2 /avmedia | |
parent | 8508eaf41b74b321f769bdd373e4bf2b98a9644f (diff) |
cmcfixes77: #i113615# WaE fix NULL/0
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/gstreamer/gstwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avmedia/source/gstreamer/gstwindow.cxx b/avmedia/source/gstreamer/gstwindow.cxx index 3b24e9974a3f..12606ad5e88b 100644 --- a/avmedia/source/gstreamer/gstwindow.cxx +++ b/avmedia/source/gstreamer/gstwindow.cxx @@ -259,7 +259,7 @@ value in sequence of arguments" ); if( !mpPlayerWindow && ( rArguments.getLength() > 2 ) ) { SystemChildWindow* pParentWindow = NULL; - sal_IntPtr pIntPtr = NULL; + sal_IntPtr pIntPtr = 0; // we are not interested in the first argument, which is a pure X11 window handle; // this backend relies on a SystemChildWindow as parent for the PlayerWindow, given |