Changeset f87ff8e in mainline for uspace/lib/tbarcfg/src/tbarcfg.c


Ignore:
Timestamp:
2023-12-19T16:19:24Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/simplify-dev-export
Children:
550ed86, dc5c303
Parents:
82d3c28
Message:

Creating new start menu entry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/tbarcfg/src/tbarcfg.c

    r82d3c28 rf87ff8e  
    405405                goto error;
    406406
     407        rc = sif_node_set_attr(trans, nentry, "cmd", cmd);
     408        if (rc != EOK)
     409                goto error;
     410
     411        rc = sif_node_set_attr(trans, nentry, "caption", caption);
     412        if (rc != EOK)
     413                goto error;
     414
    407415        rc = smenu_entry_new(smenu, nentry, caption, cmd);
    408416        if (rc != EOK)
Note: See TracChangeset for help on using the changeset viewer.