Changeset 4030072 in mainline
- Timestamp:
- 2023-10-17T07:58:44Z (14 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b279899
- Parents:
- 1543d4c
- git-author:
- Jiri Svoboda <jiri@…> (2023-10-16 17:58:28)
- git-committer:
- Jiri Svoboda <jiri@…> (2023-10-17 07:58:44)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/tbsmenu.c
r1543d4c r4030072 55 55 }; 56 56 57 static void tbsmenu_button_ clicked(ui_pbutton_t *, void *);57 static void tbsmenu_button_down(ui_pbutton_t *, void *); 58 58 59 59 /** Start button callbacks */ 60 60 static ui_pbutton_cb_t tbsmenu_button_cb = { 61 . clicked = tbsmenu_button_clicked61 .down = tbsmenu_button_down 62 62 }; 63 63 … … 374 374 } 375 375 376 /** Start button was clicked.376 /** Start button was depressed. 377 377 * 378 378 * @param pbutton Push button 379 379 * @param arg Argument (tbsmenu_entry_t *) 380 380 */ 381 static void tbsmenu_button_ clicked(ui_pbutton_t *pbutton, void *arg)381 static void tbsmenu_button_down(ui_pbutton_t *pbutton, void *arg) 382 382 { 383 383 tbsmenu_t *tbsmenu = (tbsmenu_t *)arg;
Note:
See TracChangeset
for help on using the changeset viewer.