From 20265cd088194a98469624211076d855aaa4551a Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sun, 6 Apr 2014 16:51:16 -0600 Subject: [PATCH] RoamMenuWindow.C: NULL is not 0 --- cde/programs/dtmail/dtmail/RoamMenuWindow.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. -- 2.25.1