* Handles Click event for the "Invoice" button in starport window. * * @return True, always. */
| 1364 | * @return True, always. |
| 1365 | */ |
| 1366 | bool GUI_Purchase_Invoice_Click(Widget *w) |
| 1367 | { |
| 1368 | GUI_Widget_MakeInvisible(w); |
| 1369 | GUI_Purchase_ShowInvoice(); |
| 1370 | GUI_Widget_MakeVisible(w); |
| 1371 | GUI_Widget_MakeNormal(w, false); |
| 1372 | return true; |
| 1373 | } |
| 1374 | |
| 1375 | /** |
| 1376 | * Handles Click event for the "Build this" button in production window. |
nothing calls this directly
no test coverage detected