Changes in uspace/app/nav/panel.c [2309891:b336bfd8] in mainline
- File:
-
- 1 edited
-
uspace/app/nav/panel.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/panel.c
r2309891 rb336bfd8 365 365 } 366 366 367 /** Get current directory from panel.368 *369 * @param panel Panel370 * @return Path to current directory or @c NULL if out of memory371 */372 char *panel_get_dir(panel_t *panel)373 {374 return ui_file_list_get_dir(panel->flist);375 }376 377 /** Refresh panel contents.378 *379 * @param panel Panel380 * @return EOK on success or an error code381 */382 errno_t panel_refresh(panel_t *panel)383 {384 errno_t rc;385 386 rc = ui_file_list_refresh(panel->flist);387 if (rc != EOK)388 return rc;389 390 return panel_paint(panel);391 }392 393 367 /** Request panel activation. 394 368 *
Note:
See TracChangeset
for help on using the changeset viewer.
