FACT++  1.0
void remove_all_buttons ( )

Definition at line 2691 of file didMarkus.c.

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

Referenced by show_servers(), and update_show_servers().

2692 {
2693 SERVER *servp;
2694 
2695  servp = Server_head;
2696  while( (servp = (SERVER *)sll_get_next((SLL *)servp)) )
2697  {
2698  if(servp->button_id)
2699  {
2700  XtDestroyWidget(servp->button_id);
2701  servp->button_id = 0;
2702  servp->busy = 0;
2703  }
2704  }
2705 }
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: