FACT++  1.0
void remove_all_buttons ( )

Definition at line 2743 of file did.c.

References item::busy, item::button_id, Server_head, and sll_get_next().

Referenced by show_servers(), and update_show_servers().

2744 {
2745 SERVER *servp;
2746 
2747  servp = Server_head;
2748  while( (servp = (SERVER *)sll_get_next((SLL *)servp)) )
2749  {
2750  if(servp->button_id)
2751  {
2752  XtDestroyWidget(servp->button_id);
2753  servp->button_id = 0;
2754  servp->busy = 0;
2755  }
2756  }
2757 }
int busy
Definition: did.h:52
Definition: did.h:42
Widget button_id
Definition: did.h:47
SERVER * Server_head
Definition: did.h:55
SLL * sll_get_next(SLL *item)
Definition: sll.c:50
Definition: dim.h:536

+ Here is the call graph for this function:

+ Here is the caller graph for this function: