mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
InterruptibleCmd.C, WorkingDialogManager.C: NULL is not 0
This commit is contained in:
parent
5f99b8045b
commit
8a96463f2e
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ extern forceUpdate( Widget );
|
||||||
InterruptibleCmd::InterruptibleCmd ( char *name, char *label, int active ) :
|
InterruptibleCmd::InterruptibleCmd ( char *name, char *label, int active ) :
|
||||||
NoUndoCmd ( name, label, 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()
|
_callback = NULL; // Callbacks are specified in execute()
|
||||||
_clientData = NULL;
|
_clientData = NULL;
|
||||||
_done = FALSE;
|
_done = FALSE;
|
||||||
|
|
|
@ -78,7 +78,7 @@ WorkingDialogManager *theWorkingDialogManager =
|
||||||
WorkingDialogManager::WorkingDialogManager ( char *name ) :
|
WorkingDialogManager::WorkingDialogManager ( char *name ) :
|
||||||
DialogManager ( name )
|
DialogManager ( name )
|
||||||
{
|
{
|
||||||
_intervalId = NULL;
|
_intervalId = 0;
|
||||||
_busyPixmaps = NULL;
|
_busyPixmaps = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue