https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0cf45d508c7b5256414c98af07ad54de434e1177

commit 0cf45d508c7b5256414c98af07ad54de434e1177
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Thu Mar 16 18:13:28 2023 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Thu Mar 16 18:13:28 2023 +0900

    [MSPAINT] Delete needless CMainWindow::OnSetCursor
    
    CORE-18867
---
 base/applications/mspaint/winproc.cpp | 7 -------
 base/applications/mspaint/winproc.h   | 2 --
 2 files changed, 9 deletions(-)

diff --git a/base/applications/mspaint/winproc.cpp 
b/base/applications/mspaint/winproc.cpp
index 366e711ed06..77d74061aa8 100644
--- a/base/applications/mspaint/winproc.cpp
+++ b/base/applications/mspaint/winproc.cpp
@@ -384,13 +384,6 @@ LRESULT CMainWindow::OnGetMinMaxInfo(UINT nMsg, WPARAM 
wParam, LPARAM lParam, BO
     return 0;
 }
 
-LRESULT CMainWindow::OnSetCursor(UINT nMsg, WPARAM wParam, LPARAM lParam, 
BOOL& bHandled)
-{
-    SetCursor(LoadCursor(NULL, IDC_ARROW));
-    bHandled = FALSE;
-    return 0;
-}
-
 LRESULT CMainWindow::OnKeyDown(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& 
bHandled)
 {
     if (wParam == VK_ESCAPE)
diff --git a/base/applications/mspaint/winproc.h 
b/base/applications/mspaint/winproc.h
index f98cd9eda11..749277560a3 100644
--- a/base/applications/mspaint/winproc.h
+++ b/base/applications/mspaint/winproc.h
@@ -22,7 +22,6 @@ public:
         MESSAGE_HANDLER(WM_INITMENUPOPUP, OnInitMenuPopup)
         MESSAGE_HANDLER(WM_SIZE, OnSize)
         MESSAGE_HANDLER(WM_GETMINMAXINFO, OnGetMinMaxInfo)
-        MESSAGE_HANDLER(WM_SETCURSOR, OnSetCursor)
         MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown)
         MESSAGE_HANDLER(WM_SYSCOLORCHANGE, OnSysColorChange)
         MESSAGE_HANDLER(WM_COMMAND, OnCommand)
@@ -36,7 +35,6 @@ public:
     LRESULT OnInitMenuPopup(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& 
bHandled);
     LRESULT OnSize(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
     LRESULT OnGetMinMaxInfo(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& 
bHandled);
-    LRESULT OnSetCursor(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& 
bHandled);
     LRESULT OnKeyDown(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
     LRESULT OnSysColorChange(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& 
bHandled);
     LRESULT OnCommand(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);

Reply via email to