Changes in uspace/app/taskbar/clock.c [1172326:95fc538] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/clock.c
r1172326 r95fc538 1 1 /* 2 * Copyright (c) 2025 Wayne Michael Thornton (WMT) <wmthornton-dev@outlook.com>3 2 * Copyright (c) 2022 Jiri Svoboda 4 3 * All rights reserved. … … 220 219 } 221 220 222 /** Launch date configuration application */223 static errno_t taskbar_clock_launch_date_cfg(void)224 {225 task_id_t id;226 const char *args[] = { "/app/date_cfg", NULL };227 return task_spawnv(&id, NULL, args[0], args);228 }229 230 221 /** Handle taskbar clock position event. 231 222 * … … 242 233 if (!gfx_pix_inside_rect(&pos, &clock->rect)) 243 234 return ui_unclaimed; 244 245 if (event->type == POS_PRESS) {246 taskbar_clock_launch_date_cfg();247 }248 235 249 236 return ui_claimed;
Note:
See TracChangeset
for help on using the changeset viewer.