From: Jon Trulson Date: Sun, 6 Apr 2014 22:51:16 +0000 (-0600) Subject: RoamMenuWindow.C: NULL is not 0 X-Git-Tag: 2.2.2~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=20265cd088194a98469624211076d855aaa4551a;p=oweals%2Fcde.git RoamMenuWindow.C: NULL is not 0 --- diff --git a/cde/programs/dtmail/dtmail/RoamMenuWindow.C b/cde/programs/dtmail/dtmail/RoamMenuWindow.C index 5636d1c5..33d0b85f 100644 --- a/cde/programs/dtmail/dtmail/RoamMenuWindow.C +++ b/cde/programs/dtmail/dtmail/RoamMenuWindow.C @@ -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.