Changes in / [597fa24:9f945464] in mainline
- Location:
- uspace/app
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/aboutos/aboutos.c
r597fa24 r9f945464 167 167 ui_wnd_params_init(¶ms); 168 168 params.caption = "About HelenOS"; 169 params.placement = ui_wnd_place_center; 169 170 170 171 /* FIXME: Auto layout */ -
uspace/app/meson.build
r597fa24 r9f945464 37 37 'cpptest', 38 38 'date', 39 'date_cfg', 39 40 'devctl', 40 41 'df', -
uspace/app/taskbar/clock.c
r597fa24 r9f945464 219 219 } 220 220 221 /** Launch date configuration application */ 222 static errno_t taskbar_clock_launch_date_cfg(void) 223 { 224 task_id_t id; 225 const char *args[] = { "/app/date_cfg", NULL }; 226 return task_spawnv(&id, NULL, args[0], args); 227 } 228 221 229 /** Handle taskbar clock position event. 222 230 * … … 233 241 if (!gfx_pix_inside_rect(&pos, &clock->rect)) 234 242 return ui_unclaimed; 243 244 if (event->type == POS_PRESS) { 245 taskbar_clock_launch_date_cfg(); 246 } 235 247 236 248 return ui_claimed;
Note:
See TracChangeset
for help on using the changeset viewer.