diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-26 13:27:58 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-26 13:31:17 +0200 |
commit | e6bb22d50619fa584d4d19f4a2091f40a8357c37 (patch) | |
tree | 724ecbccfc0a4138b2f2ea2f4b5bc9ace04500b1 | |
parent | 42784855b7365fcddd9206b91c187f2ea4b2299e (diff) | |
download | jwm-e6bb22d50619fa584d4d19f4a2091f40a8357c37.tar.gz |
Convert function definition
-rw-r--r-- | src/traybutton.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/traybutton.c b/src/traybutton.c index 6761d7c..ce185d0 100644 --- a/src/traybutton.c +++ b/src/traybutton.c @@ -131,9 +131,11 @@ DestroyTrayButtons() /*************************************************************************** ***************************************************************************/ -TrayComponentType *CreateTrayButton(const char *iconName, +TrayComponentType * +CreateTrayButton(const char *iconName, const char *label, const char *action, - const char *popup, int width, int height) { + const char *popup, int width, int height) +{ TrayButtonType *bp; TrayComponentType *cp; |