git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40866
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
const size_t count = windowsThis.size();
for ( size_t n = 0; n < count; n++ )
{
const size_t count = windowsThis.size();
for ( size_t n = 0; n < count; n++ )
{
- gdk_window_set_cursor(windowsThis[n], cursor.GetCursor());
+ GdkWindow *win = windowsThis[n];
+ if ( !win )
+ {
+ wxFAIL_MSG(_T("NULL window returned by GTKGetWindow()?"));
+ continue;
+ }
+
+ gdk_window_set_cursor(win, cursor.GetCursor());