Changes in uspace/app/taskbar-cfg/startmenu.c [b1397ab:69935a8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar-cfg/startmenu.c
rb1397ab r69935a8 349 349 smentry->entry = entry; 350 350 351 printf("startmenu_insert: smentry=%p entry=%p\n",352 smentry, entry);353 351 ui_list_entry_attr_init(&attr); 354 352 attr.caption = smenu_entry_get_caption(entry); … … 390 388 smentry = startmenu_get_selected(smenu); 391 389 392 printf("smeedit_create:entry=%p\n", smentry);393 390 rc = smeedit_create(smenu, smentry, &smee); 394 391 if (rc != EOK) … … 398 395 } 399 396 397 /** Update start menu entry caption. 398 * 399 * When editing an entry the entry's label might change. We need 400 * to update the list entry caption to reflect that. 401 * 402 * @param entry Start menu entry 403 */ 404 errno_t startmenu_entry_update(startmenu_entry_t *entry) 405 { 406 return ui_list_entry_set_caption(entry->lentry, 407 smenu_entry_get_caption(entry->entry)); 408 } 409 400 410 /** Entry in entry list is selected. 401 411 *
Note:
See TracChangeset
for help on using the changeset viewer.