| 605 | } |
| 606 | |
| 607 | static void |
| 608 | menu_popdown(struct xwindow *wp) |
| 609 | { |
| 610 | nh_XtPopdown(wp->popup); /* remove the event grab */ |
| 611 | XtDestroyWidget(wp->popup); |
| 612 | wp->w = wp->popup = (Widget) 0; |
| 613 | if (wp->menu_information->is_active) |
| 614 | exit_x_event = TRUE; /* exit our event handler */ |
| 615 | wp->menu_information->is_up = FALSE; /* menu is down */ |
| 616 | } |
| 617 | |
| 618 | /* construct a bit mask specifying which scrolling operations are allowed */ |
| 619 | static unsigned |
no test coverage detected