Changes between Version 45 and Version 46 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
- Timestamp:
- 02/09/24 09:02:20 (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
v45 v46 218 218 219 219 {{{ 220 EVENT(FileOperationShow) 221 { 222 ClearScreenAndShowTitle(pForm, "File Operation"); 223 return 0; 224 } 225 220 226 void FileOperation(void) 221 227 { … … 223 229 CFormRect rect; 224 230 225 FORM_INIT(Update, Event DownloadedFileShow, NULL, NULL, NULL, 0);231 FORM_INIT(Update, EventFileOperationShow, NULL, NULL, NULL, 0); 226 232 227 233 SetupMenuFormToUseFontSet(formUpdate, rect, MENU_BTN_WIDE_WIDTH); … … 231 237 FORM_ADD_BUTTON2(Update, Import, rect, "Import", 'I', EventImport, FORM_BUTTON_SHADOW); 232 238 #else 233 FORM_INIT(Update, Event DownloadedFileShow, NULL, NULL, NULL, 0);239 FORM_INIT(Update, EventFileOperationShow, NULL, NULL, NULL, 0); 234 240 235 241 FORM_ADD_BUTTON(Update, Export, MENU_COL1_X, MENU_ROW1_Y, " Export ", 'X', EventExport, FORM_BUTTON_INVERT);