case wxCURSOR_BASED_ARROW_DOWN: gdk_cur = GDK_BASED_ARROW_DOWN; break;
*/
default:
- wxFAIL_MSG("unsupported cursor type");
+ wxFAIL_MSG(_T("unsupported cursor type"));
// will use the standard one
case wxCURSOR_ARROW:
return;
wxCHECK_RET( gs_savedCursor && gs_savedCursor->Ok(),
- "calling wxEndBusyCursor() without wxBeginBusyCursor()?" );
+ _T("calling wxEndBusyCursor() without wxBeginBusyCursor()?") );
wxSetCursor(*gs_savedCursor);
delete gs_savedCursor;
return;
wxASSERT_MSG( !gs_savedCursor,
- "forgot to call wxEndBusyCursor, will leak memory" );
+ _T("forgot to call wxEndBusyCursor, will leak memory") );
gs_savedCursor = new wxCursor;
if ( g_globalCursor && g_globalCursor->Ok() )
{
if (g_globalCursor) (*g_globalCursor) = cursor;
}
-
-