Update function names, variable names and documentation for the RandR changes

This commit is contained in:
Michael Stapelberg
2010-03-05 16:18:41 +01:00
parent 8b192ac7ed
commit 8d648b4e37
9 changed files with 107 additions and 95 deletions

View File

@ -166,7 +166,7 @@ int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_
static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
Output *output;
if ((output = get_screen_containing(x, y)) == NULL) {
if ((output = get_output_containing(x, y)) == NULL) {
ELOG("ERROR: No such screen\n");
return;
}
@ -457,7 +457,7 @@ int handle_screen_change(void *prophs, xcb_connection_t *conn,
xcb_generic_event_t *e) {
DLOG("RandR screen change\n");
randr_query_screens(conn);
randr_query_outputs(conn);
return 1;
}