| 3556 | |
| 3557 | |
| 3558 | void CsvApplication::dumpWindows() { |
| 3559 | for( int slot = 0; slot < TCRUNCHER_MAX_WINDOWS; ++slot) { |
| 3560 | printf("Window %02d:\n", slot); |
| 3561 | if( windows[slot].getWindowSlotUsed() ) { |
| 3562 | printf("win: %p\n", (void *)windows[slot].win); |
| 3563 | } else { |
| 3564 | printf("-- not used --\n"); |
| 3565 | } |
| 3566 | } |
| 3567 | } |
| 3568 | |
| 3569 | |
| 3570 |
nothing calls this directly
no test coverage detected