git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1761
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
extern wxCursor *g_globalCursor;
static wxCursor *gs_savedCursor = NULL;
extern wxCursor *g_globalCursor;
static wxCursor *gs_savedCursor = NULL;
+static int gs_busyCount = 0;
+ if ( --gs_busyCount > 0 )
+ return;
+
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(),
"calling wxEndBusyCursor() without wxBeginBusyCursor()?" );
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(),
"calling wxEndBusyCursor() without wxBeginBusyCursor()?" );
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{
+ if ( gs_busyCount++ > 0 )
+ return;
+
wxASSERT_MSG( !gs_savedCursor,
"forgot to call wxEndBusyCursor, will leak memory" );
wxASSERT_MSG( !gs_savedCursor,
"forgot to call wxEndBusyCursor, will leak memory" );
- return gs_savedCursor != NULL;
+ return gs_busyCount > 0;
}
void wxSetCursor( const wxCursor& cursor )
}
void wxSetCursor( const wxCursor& cursor )
extern wxCursor *g_globalCursor;
static wxCursor *gs_savedCursor = NULL;
extern wxCursor *g_globalCursor;
static wxCursor *gs_savedCursor = NULL;
+static int gs_busyCount = 0;
+ if ( --gs_busyCount > 0 )
+ return;
+
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(),
"calling wxEndBusyCursor() without wxBeginBusyCursor()?" );
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(),
"calling wxEndBusyCursor() without wxBeginBusyCursor()?" );
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{
void wxBeginBusyCursor( wxCursor *WXUNUSED(cursor) )
{
+ if ( gs_busyCount++ > 0 )
+ return;
+
wxASSERT_MSG( !gs_savedCursor,
"forgot to call wxEndBusyCursor, will leak memory" );
wxASSERT_MSG( !gs_savedCursor,
"forgot to call wxEndBusyCursor, will leak memory" );
- return gs_savedCursor != NULL;
+ return gs_busyCount > 0;
}
void wxSetCursor( const wxCursor& cursor )
}
void wxSetCursor( const wxCursor& cursor )