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:
parent
0080185db9
commit
20265cd088
1 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue