| 556 | |
| 557 | |
| 558 | static void |
| 559 | DelayedMap(ClientData clientData) |
| 560 | { |
| 561 | while (Tk_DoOneEvent(TK_IDLE_EVENTS) != 0) { |
| 562 | /* Empty loop body. */ |
| 563 | } |
| 564 | if (MainWindow == NULL) { |
| 565 | return; |
| 566 | } |
| 567 | Tk_MapWindow(MainWindow); |
| 568 | } |
| 569 | |
| 570 | |
| 571 | DidStopPan(SimView *view) |
nothing calls this directly
no test coverage detected