Convert text cursor position protocol to use fixed types.

This commit is contained in:
Scott Moreau
2012-06-01 12:46:09 -06:00
committed by Kristian Høgsberg
parent bbf63bf92c
commit ae71220fc9
5 changed files with 20 additions and 16 deletions
+3 -1
View File
@@ -2701,7 +2701,9 @@ window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
return;
text_cursor_position_notify(text_cursor_position,
window->surface, x, y);
window->surface,
wl_fixed_from_int(x),
wl_fixed_from_int(y));
window->send_cursor_position = 0;
}