From ab361c4903f335d2797265f8cb89b9121d0a8318 Mon Sep 17 00:00:00 2001 From: Sebastian Zhorel Date: Tue, 26 Nov 2013 22:56:35 +0100 Subject: [PATCH] fix a few typos in comments --- src/SFML/Window/Unix/WindowImplX11.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SFML/Window/Unix/WindowImplX11.cpp b/src/SFML/Window/Unix/WindowImplX11.cpp index cdd1afc9..0b6e6e04 100644 --- a/src/SFML/Window/Unix/WindowImplX11.cpp +++ b/src/SFML/Window/Unix/WindowImplX11.cpp @@ -103,7 +103,7 @@ m_useSizeHints(false) if (m_window) { - // Make sure the window is listening to all the requiered events + // Make sure the window is listening to all the required events XSelectInput(m_display, m_window, eventMask & ~ButtonPressMask); // Do some common initializations @@ -557,7 +557,7 @@ void WindowImplX11::initialize() XMapWindow(m_display, m_window); XFlush(m_display); - // Create the hiden cursor + // Create the hidden cursor createHiddenCursor(); // Flush the commands queue @@ -693,7 +693,7 @@ bool WindowImplX11::processEvent(XEvent windowEvent) // Resize event case ConfigureNotify : { - // ConfigureNotify can be triggered for other reasons, check if the size has acutally changed + // ConfigureNotify can be triggered for other reasons, check if the size has actually changed if ((windowEvent.xconfigure.width != m_previousSize.x) || (windowEvent.xconfigure.height != m_previousSize.y)) { Event event;