| 1630 | } |
| 1631 | } |
| 1632 | void CsvApplication::updateSearchWindow() { |
| 1633 | int winIndex = app.getTopWindow(); |
| 1634 | std::string scopeMsg = "Scope: " + windows[winIndex].humanReadableSelection(); |
| 1635 | searchWinScope->copy_label(scopeMsg.c_str()); |
| 1636 | searchWinScope->redraw(); |
| 1637 | // Fl::check(); // sometimes causes Seg Fault |
| 1638 | } |
| 1639 | |
| 1640 | void CsvApplication::find_substring_CB(Fl_Widget *, long data) { |
| 1641 | int keyCode = (int) data; |
nothing calls this directly
no test coverage detected