Changes in / [2c94501:3e7948c] in mainline


Ignore:
Location:
uspace/app
Files:
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/aboutos/aboutos.c

    r2c94501 r3e7948c  
    167167        ui_wnd_params_init(&params);
    168168        params.caption = "About HelenOS";
    169         params.placement = ui_wnd_place_center;
    170169
    171170        /* FIXME: Auto layout */
  • uspace/app/meson.build

    r2c94501 r3e7948c  
    3737        'cpptest',
    3838        'date',
    39         'date_cfg',
    4039        'devctl',
    4140        'df',
  • uspace/app/taskbar/clock.c

    r2c94501 r3e7948c  
    219219}
    220220
    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 
    229221/** Handle taskbar clock position event.
    230222 *
     
    241233        if (!gfx_pix_inside_rect(&pos, &clock->rect))
    242234                return ui_unclaimed;
    243 
    244         if (event->type == POS_PRESS) {
    245                 taskbar_clock_launch_date_cfg();
    246         }
    247235
    248236        return ui_claimed;
Note: See TracChangeset for help on using the changeset viewer.