From: Vadim Zeitlin Date: Mon, 29 May 2006 00:01:30 +0000 (+0000) Subject: oops, typo in last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7aa7d2d407a14a3dc0ba754b8b9e1296a4a6be57 oops, typo in last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index 49f9dee57c..42e5c5cd03 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -1057,7 +1057,7 @@ wxWindow* wxFindWindowAtPoint(wxWindow* win, const wxPoint& pt) wxPoint pos = win->GetPosition(); wxSize sz = win->GetSize(); - if ( !win->IsTopLeven() && win->GetParent() ) + if ( !win->IsTopLevel() && win->GetParent() ) { pos = win->GetParent()->ClientToScreen(pos); }