From e146b6330d1355181f8ebcd1c75739428ef84a1f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Feb 2015 13:19:13 +0000 Subject: [PATCH] Fix a couple of typos in comments in wxX11 code. Closes #16835. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78441 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11/window.cpp b/src/x11/window.cpp index 6dee823b0e..c026062d99 100644 --- a/src/x11/window.cpp +++ b/src/x11/window.cpp @@ -68,7 +68,7 @@ static wxWindowX11* g_captureWindow = NULL; static GC g_eraseGC; -// the window that is about to be focused after curretnly focused +// the window that is about to be focused after currently focused // one looses focus: static wxWindow* gs_toBeFocusedWindow = NULL; @@ -359,7 +359,7 @@ wxWindowX11::~wxWindowX11() if (m_clientWindow != m_mainWindow) { - // Destroy the cleint window + // Destroy the client window Window xwindow = (Window) m_clientWindow; wxDeleteClientWindowFromTable( xwindow ); XDestroyWindow( wxGlobalDisplay(), xwindow );