From 8a96463f2e171ca86b1220034a4b8e3b771360bd Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sun, 6 Apr 2014 16:46:09 -0600 Subject: [PATCH] InterruptibleCmd.C, WorkingDialogManager.C: NULL is not 0 --- cde/programs/dtmail/MotifApp/InterruptibleCmd.C | 2 +- cde/programs/dtmail/MotifApp/WorkingDialogManager.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cde/programs/dtmail/MotifApp/InterruptibleCmd.C b/cde/programs/dtmail/MotifApp/InterruptibleCmd.C index 3fe82cfb..85beb5bd 100644 --- a/cde/programs/dtmail/MotifApp/InterruptibleCmd.C +++ b/cde/programs/dtmail/MotifApp/InterruptibleCmd.C @@ -76,7 +76,7 @@ extern forceUpdate( Widget ); InterruptibleCmd::InterruptibleCmd ( char *name, char *label, int active ) : NoUndoCmd ( name, label, active ) { - _wpId = NULL; // There is no work procedure yet + _wpId = 0; // There is no work procedure yet _callback = NULL; // Callbacks are specified in execute() _clientData = NULL; _done = FALSE; diff --git a/cde/programs/dtmail/MotifApp/WorkingDialogManager.C b/cde/programs/dtmail/MotifApp/WorkingDialogManager.C index b66cdfb5..70742fd2 100644 --- a/cde/programs/dtmail/MotifApp/WorkingDialogManager.C +++ b/cde/programs/dtmail/MotifApp/WorkingDialogManager.C @@ -78,7 +78,7 @@ WorkingDialogManager *theWorkingDialogManager = WorkingDialogManager::WorkingDialogManager ( char *name ) : DialogManager ( name ) { - _intervalId = NULL; + _intervalId = 0; _busyPixmaps = NULL; } -- 2.25.1