===========================================================================
| 7650 | |
| 7651 | //=========================================================================== |
| 7652 | Update_t CmdWindowShowCode (int nArgs) |
| 7653 | { |
| 7654 | // g_bWindowDisplayShowChild = false; |
| 7655 | // g_bWindowDisplayShowRoot = WINDOW_CODE; |
| 7656 | |
| 7657 | if (g_iWindowThis == WINDOW_CODE) |
| 7658 | { |
| 7659 | g_aWindowConfig[ g_iWindowThis ].bSplit = false; |
| 7660 | g_aWindowConfig[ g_iWindowThis ].eBot = WINDOW_CODE; // not really needed, but SAFE HEX ;-) |
| 7661 | } |
| 7662 | else |
| 7663 | if (g_iWindowThis == WINDOW_DATA) |
| 7664 | { |
| 7665 | g_aWindowConfig[ g_iWindowThis ].bSplit = true; |
| 7666 | g_aWindowConfig[ g_iWindowThis ].eBot = WINDOW_CODE; |
| 7667 | } |
| 7668 | |
| 7669 | WindowUpdateSizes(); |
| 7670 | |
| 7671 | return UPDATE_CONSOLE_DISPLAY; |
| 7672 | } |
| 7673 | |
| 7674 | //=========================================================================== |
| 7675 | Update_t CmdWindowShowCode1 (int nArgs) |
nothing calls this directly
no test coverage detected