InterruptibleCmd.C, WorkingDialogManager.C: NULL is not 0
authorJon Trulson <jon@radscan.com>
Sun, 6 Apr 2014 22:46:09 +0000 (16:46 -0600)
committerJon Trulson <jon@radscan.com>
Sun, 6 Apr 2014 22:46:09 +0000 (16:46 -0600)
cde/programs/dtmail/MotifApp/InterruptibleCmd.C
cde/programs/dtmail/MotifApp/WorkingDialogManager.C

index 3fe82cfb9393b6528b2be5253ca5d669ae5bcdde..85beb5bdd0c15ec8011234e811f3a02cbd14f8d6 100644 (file)
@@ -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; 
index b66cdfb5c1597027c1088cd351a957557ba76d0f..70742fd2bcd9642967aa1dfb57d253c32476a456 100644 (file)
@@ -78,7 +78,7 @@ WorkingDialogManager *theWorkingDialogManager =
 WorkingDialogManager::WorkingDialogManager ( char   *name ) : 
                            DialogManager ( name )
 {
-    _intervalId  = NULL;
+    _intervalId  = 0;
     _busyPixmaps = NULL;
 }