From: Václav Slavík Date: Wed, 5 Mar 2008 15:31:09 +0000 (+0000) Subject: made wxFindFocusedChild static, the comment wasn't telling truth anymore X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c1f615bf1487ef58840475a357ddcf8fcfd65eb7?ds=inline made wxFindFocusedChild static, the comment wasn't telling truth anymore git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index 33aa52e10a..28d8173c4c 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -230,9 +230,7 @@ gdk_window_warp_pointer (GdkWindow *window, //----------------------------------------------------------------------------- // returns the child of win which currently has focus or NULL if not found -// -// Note: can't be static, needed by textctrl.cpp. -wxWindow *wxFindFocusedChild(wxWindowGTK *win) +static wxWindow *wxFindFocusedChild(wxWindowGTK *win) { wxWindow *winFocus = wxWindowGTK::FindFocus(); if ( !winFocus )