| 3484 | app.editSingleCell(); |
| 3485 | } |
| 3486 | void CsvApplication::editSingleCellSaveCB(Fl_Widget *widget, void *data) { |
| 3487 | // My_Fl_Small_Window *singleCellEditWin = ((My_Fl_Button *)widget)->parent(); |
| 3488 | bool *changeContent = (bool *) data; |
| 3489 | *changeContent = true; |
| 3490 | app.lastSingleEditWinWidth = ((My_Fl_Button *)widget)->parent()->w(); |
| 3491 | app.lastSingleEditWinHeight = ((My_Fl_Button *)widget)->parent()->h(); |
| 3492 | ((My_Fl_Button *)widget)->parent()->hide(); |
| 3493 | } |
| 3494 | |
| 3495 | |
| 3496 | int CsvApplication::getEditorTabDistance() { |
nothing calls this directly
no outgoing calls
no test coverage detected