Index: uspace/srv/hid/display/dsops.c
===================================================================
--- uspace/srv/hid/display/dsops.c	(revision fb420e48d741bf6fe291bdb165ec1a5626f87fa1)
+++ uspace/srv/hid/display/dsops.c	(revision 8e9781f3bb5a151b942fed581c13470de1a2ec2e)
@@ -74,9 +74,4 @@
 	wnd->dpos.y = ((wnd->id - 1) & 2) / 2 * 300;
 
-	/*
-	 * XXX This should be performed by window manager. It needs to determine
-	 * whether the new window should get focus and which seat should
-	 * focus on it.
-	 */
 	seat = ds_display_first_seat(client->display);
 	ds_seat_set_focus(seat, wnd);
Index: uspace/srv/hid/display/seat.c
===================================================================
--- uspace/srv/hid/display/seat.c	(revision fb420e48d741bf6fe291bdb165ec1a5626f87fa1)
+++ uspace/srv/hid/display/seat.c	(revision 8e9781f3bb5a151b942fed581c13470de1a2ec2e)
@@ -98,5 +98,4 @@
 
 	if (seat->focus == wnd) {
-		/* Focus a different window. XXX Delegate to WM */
 		nwnd = ds_display_next_window(wnd);
 		if (nwnd == NULL)
Index: uspace/srv/hid/display/window.c
===================================================================
--- uspace/srv/hid/display/window.c	(revision fb420e48d741bf6fe291bdb165ec1a5626f87fa1)
+++ uspace/srv/hid/display/window.c	(revision 8e9781f3bb5a151b942fed581c13470de1a2ec2e)
@@ -210,5 +210,5 @@
  * Create graphics context for rendering into a window.
  *
- * @param client Client owning the window=
+ * @param client Client owning the window
  * @param params Window parameters
  * @param rgc Place to store pointer to new GC.
