Skip to content

Commit

Permalink
better code purity
Browse files Browse the repository at this point in the history
  • Loading branch information
okbob committed Sep 13, 2019
1 parent a4ad25e commit a97310f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/st_menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ extern int debug_eventno;

#endif

typedef struct _ST_MENU_ITEM
typedef struct st_ST_MENU_ITEM
{
char *text; /* text of menu item, possible specify accelerator by ~ */
int code; /* code of menu item (optional) */
char *shortcut; /* shortcut text, only printed (optional) */
int data; /* allow to assign some value to menu item (optional) */
char group; /* specify semantics of data value (optional) */
int options; /* locked, marked, ... (optional) */
struct _ST_MENU_ITEM *submenu; /* reference to nested menu (optional) */
struct st_ST_MENU_ITEM *submenu; /* reference to nested menu (optional) */
} ST_MENU_ITEM;

typedef struct
Expand Down

1 comment on commit a97310f

@elfring
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would an other commit message be more helpful?

Please sign in to comment.