From d890beb9c873adf9f0be3521ef5ad98be51484c1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 4 Mar 2012 00:29:58 +0000 Subject: [PATCH] Use standard IDC_CROSS cursor in wxMSW. There doesn't seem to be any reason to prefer our own WXCURSOR_CROSS to it. Closes #13035. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/cursor.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/msw/cursor.cpp b/src/msw/cursor.cpp index 74f57dcf52..bb932667b1 100644 --- a/src/msw/cursor.cpp +++ b/src/msw/cursor.cpp @@ -293,15 +293,8 @@ void wxCursor::InitFromStock(wxStockCursor idCursor) { false, wxT("WXCURSOR_RIGHT_ARROW") }, // wxCURSOR_RIGHT_ARROW { false, wxT("WXCURSOR_BULLSEYE") }, // wxCURSOR_BULLSEYE { true, IDC_ARROW }, // WXCURSOR_CHAR - - // Displays as an I-beam on XP, so use a cursor file -// { true, IDC_CROSS }, // WXCURSOR_CROSS - { false, wxT("WXCURSOR_CROSS") }, // WXCURSOR_CROSS - - // See special handling below for wxCURSOR_HAND -// { false, wxT("WXCURSOR_HAND") }, // wxCURSOR_HAND + { true, IDC_CROSS }, // WXCURSOR_CROSS { true, IDC_HAND }, // wxCURSOR_HAND - { true, IDC_IBEAM }, // WXCURSOR_IBEAM { true, IDC_ARROW }, // WXCURSOR_LEFT_BUTTON { false, wxT("WXCURSOR_MAGNIFIER") }, // wxCURSOR_MAGNIFIER -- 2.47.2