| 1593 | |
| 1594 | |
| 1595 | bool CsvApplication::isAlreadyOpened(std::string path) { |
| 1596 | for(int slot = 0; slot < TCRUNCHER_MAX_WINDOWS; ++slot) { |
| 1597 | if( windows[slot].getWindowSlotUsed() && windows[slot].getPath() == path ) |
| 1598 | return true; |
| 1599 | } |
| 1600 | return false; |
| 1601 | } |
| 1602 | |
| 1603 | |
| 1604 | /* |
no test coverage detected