tune code to reflect the new prototypes

This commit is contained in:
VincentWei
2018-01-21 17:19:18 +08:00
parent dbcc408ad3
commit 75764eecb4
14 changed files with 20 additions and 21 deletions
+6 -6
View File
@@ -2,9 +2,9 @@
* The following MSG_SETCURSOR handler set the cursor
* shape to the arrow cursor when the window is disabled.
*/
case MSG_SETCURSOR:
if (GetWindowStyle (hwnd) & WS_DISABLED) {
SetCursor (GetSystemCursor (IDC_ARROW));
return 0;
}
break;
case MSG_SETCURSOR:
if (GetWindowStyle (hwnd) & WS_DISABLED) {
SetCursor (GetSystemCursor (IDC_ARROW));
return 0;
}
break;