*** empty log message ***
This commit is contained in:
8
selvar.c
8
selvar.c
@ -163,6 +163,7 @@
|
||||
static int CheckVal(void *pSelf, SConnection *pCon )
|
||||
{
|
||||
pSelVar self = NULL;
|
||||
int status;
|
||||
|
||||
self = (pSelVar)pSelf;
|
||||
assert(self);
|
||||
@ -173,7 +174,12 @@
|
||||
|
||||
self->pCon = pCon;
|
||||
InvokeCallBack(self->pCall, WLCHANGE, self);
|
||||
return MonoCheck(self->pSel,pCon);
|
||||
status = MonoCheck(self->pSel,pCon);
|
||||
if(status != HWBusy)
|
||||
{
|
||||
InvokeCallBack(self->pCall, WLCHANGE, self);
|
||||
}
|
||||
return status;
|
||||
}
|
||||
/*------------------------------------------------------------------------*/
|
||||
static int HaltSelVar(void *pSelf)
|
||||
|
Reference in New Issue
Block a user