Zebediah Figura : regedit: Use an I-beam cursor in the hex edit dialog.

Alexandre Julliard julliard at winehq.org
Mon Apr 22 16:30:37 CDT 2019


Module: wine
Branch: master
Commit: a41c73d43e39839b2ec38c7801c763bedd4e3d65
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a41c73d43e39839b2ec38c7801c763bedd4e3d65

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Fri Apr 19 23:16:53 2019 -0500

regedit: Use an I-beam cursor in the hex edit dialog.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/regedit/hexedit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/regedit/hexedit.c b/programs/regedit/hexedit.c
index 951779b..7322a86 100644
--- a/programs/regedit/hexedit.c
+++ b/programs/regedit/hexedit.c
@@ -643,7 +643,7 @@ void HexEdit_Register(void)
     wndClass.lpfnWndProc   = HexEdit_WindowProc;
     wndClass.cbClsExtra    = 0;
     wndClass.cbWndExtra    = sizeof(HEXEDIT_INFO *);
-    wndClass.hCursor       = NULL;
+    wndClass.hCursor       = LoadCursorW(0, (const WCHAR *)IDC_IBEAM);
     wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
     wndClass.lpszClassName = szHexEditClass;
 




More information about the wine-cvs mailing list