Changes in / [2c94501:3e7948c] in mainline
- Location:
- uspace/app
- Files:
-
- 4 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/aboutos/aboutos.c
r2c94501 r3e7948c 167 167 ui_wnd_params_init(¶ms); 168 168 params.caption = "About HelenOS"; 169 params.placement = ui_wnd_place_center;170 169 171 170 /* FIXME: Auto layout */ -
uspace/app/meson.build
r2c94501 r3e7948c 37 37 'cpptest', 38 38 'date', 39 'date_cfg',40 39 'devctl', 41 40 'df', -
uspace/app/taskbar/clock.c
r2c94501 r3e7948c 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 229 221 /** Handle taskbar clock position event. 230 222 * … … 241 233 if (!gfx_pix_inside_rect(&pos, &clock->rect)) 242 234 return ui_unclaimed; 243 244 if (event->type == POS_PRESS) {245 taskbar_clock_launch_date_cfg();246 }247 235 248 236 return ui_claimed;
Note:
See TracChangeset
for help on using the changeset viewer.