1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

RoamMenuWindow.C: NULL is not 0

This commit is contained in:
Jon Trulson 2014-04-06 16:51:16 -06:00
parent 0080185db9
commit 20265cd088

View file

@ -430,8 +430,8 @@ RoamMenuWindow::RoamMenuWindow (char *name) : MenuWindow ("dtmail", True)
//
// Initialize private variables
//
_mbox_image = NULL;
_mbox_mask = NULL;
_mbox_image = 0;
_mbox_mask = 0;
_my_editor = NULL;
_message = NULL;
@ -683,7 +683,7 @@ RoamMenuWindow::initialize()
if (_mbox_image == XmUNSPECIFIED_PIXMAP ||
_mbox_mask == XmUNSPECIFIED_PIXMAP)
_mbox_image = _mbox_mask = NULL;
_mbox_image = _mbox_mask = 0;
}
// Add an event handler for structureNotify.