From 00145a7ab5f04f97975d6437bb14d514a97c30a0 Mon Sep 17 00:00:00 2001 From: Keiko Katsuragawa <kkatsuragawa@uwaterloo.ca> Date: Tue, 13 Feb 2018 13:24:13 -0500 Subject: [PATCH] fixed typo --- x/1-5-Events/eventloop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/1-5-Events/eventloop.cpp b/x/1-5-Events/eventloop.cpp index de4f6ed..a673f60 100644 --- a/x/1-5-Events/eventloop.cpp +++ b/x/1-5-Events/eventloop.cpp @@ -219,7 +219,7 @@ void initX(int argc, char* argv[], XInfo& xinfo) { XSetBackground( xinfo.display, xinfo.gc, background ); XSetForeground( xinfo.display, xinfo.gc, foreground ); - // Tell the window manager what input events you want. + // Tell the base window system what input events you want. // ButtomMotionMask: The client application receives MotionNotify events only when at least one button is pressed. XSelectInput( xinfo.display, xinfo.window, ButtonPressMask | KeyPressMask | ButtonMotionMask ); -- GitLab