Skip to content

Commit 09e8721

Browse files
authored
Replace split.cur with standard IDC_SIZEWE (#49)
1 parent c867efa commit 09e8721

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

dxview.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ int WINAPI WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE /*hPrevInstance*
226226
wc.cbWndExtra = 0; // No per-window extra data.
227227
wc.hInstance = hInstance; // Owner of this class
228228
wc.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_DIRECTX)); // Icon name from .RC
229-
wc.hCursor = LoadCursor(hInstance, MAKEINTRESOURCE(IDC_SPLIT));// Cursor
229+
wc.hCursor = LoadCursor(NULL, IDC_SIZEWE);// Cursor
230230
wc.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1); // Default color
231231
wc.lpszMenuName = "Menu"; // Menu name from .RC
232232
wc.lpszClassName = g_strClassName; // Name to register as

dxview.rc

-7
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,6 @@ BEGIN
9797
END
9898

9999

100-
/////////////////////////////////////////////////////////////////////////////
101-
//
102-
// Cursor
103-
//
104-
105-
IDC_SPLIT CURSOR DISCARDABLE "Split.cur"
106-
107100
#ifdef APSTUDIO_INVOKED
108101
/////////////////////////////////////////////////////////////////////////////
109102
//

resource.h

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#define IDS_PRINT_WARNING 1
77
#define IDS_PRINT_NEEDSELECT 2
88
#define IDS_PRINT_NOROOT 3
9-
#define IDC_SPLIT 100
109
#define IDI_DIRECTX 100
1110
#define IDI_CAPS 101
1211
#define IDI_CAPSOPEN 102

split.cur

-326 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)