Changeset f1f433d in mainline for uspace/srv/hid/display/window.c
- Timestamp:
- 2022-11-04T20:54:04Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a6d44b7
- Parents:
- fc00f0d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/window.c
rfc00f0d rf1f433d 45 45 #include <stdlib.h> 46 46 #include <str.h> 47 #include <wndmgt.h> 47 48 #include "client.h" 48 49 #include "display.h" 49 50 #include "seat.h" 50 51 #include "window.h" 52 #include "wmclient.h" 51 53 52 54 static void ds_window_invalidate_cb(void *, gfx_rect_t *); … … 933 935 { 934 936 char *dcaption; 937 ds_wmclient_t *wmclient; 935 938 936 939 dcaption = str_dup(caption); … … 940 943 free(wnd->caption); 941 944 wnd->caption = dcaption; 945 946 /* Notify window managers about window information change */ 947 wmclient = ds_display_first_wmclient(wnd->display); 948 while (wmclient != NULL) { 949 ds_wmclient_post_wnd_changed_event(wmclient, wnd->id); 950 wmclient = ds_display_next_wmclient(wmclient); 951 } 942 952 943 953 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.