*** empty log message ***
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
19990719-00:55 EDT Paul Tucker <ptucker@sympatico.ca>
|
||||
* source/rtl/set.c
|
||||
* Trap for NIL param in Set( _SET_SETCOLOR, NIL )
|
||||
|
||||
19990719-00:12 EDT Paul Tucker <ptucker@sympatico.ca>
|
||||
* corrected new parameter check
|
||||
added {"SET",1,3}
|
||||
|
||||
@@ -672,7 +672,7 @@ HARBOUR HB_SET (void)
|
||||
if (args > 1) hb_set.HB_SET_COLOR = set_string (pArg2, hb_set.HB_SET_COLOR);
|
||||
*/
|
||||
if (hb_set.HB_SET_COLOR) hb_xfree(hb_set.HB_SET_COLOR );
|
||||
hb_retc( hb_set.HB_SET_COLOR = hb_SetColor( args>1 ? pArg2->item.asString.value : (char *)0));
|
||||
hb_retc( hb_set.HB_SET_COLOR = hb_SetColor( args>1 ? IS_NIL(pArg2) ? "" : pArg2->item.asString.value : (char *)0));
|
||||
break;
|
||||
case HB_SET_CONFIRM :
|
||||
hb_retl (hb_set.HB_SET_CONFIRM);
|
||||
|
||||
Reference in New Issue
Block a user