https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3581a79ebf1f86b9f90c6e8e2a971223e7e7b905

commit 3581a79ebf1f86b9f90c6e8e2a971223e7e7b905
Author:     Katayama Hirofumi MZ <katayama.hirofumi...@gmail.com>
AuthorDate: Thu Feb 8 14:13:59 2024 +0900
Commit:     GitHub <nore...@github.com>
CommitDate: Thu Feb 8 14:13:59 2024 +0900

    [SDK] cicutf.h: s/OnPointingEnded/OnMouseOutFromWindow/ (#6461)
    
    Supporting Language Bar...
    JIRA issue: CORE-19363
    Renaming method.
---
 sdk/include/reactos/cicero/cicuif.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdk/include/reactos/cicero/cicuif.h 
b/sdk/include/reactos/cicero/cicuif.h
index ba9e9d8ab42..614a5aa2808 100644
--- a/sdk/include/reactos/cicero/cicuif.h
+++ b/sdk/include/reactos/cicero/cicuif.h
@@ -592,7 +592,7 @@ public:
     STDMETHOD_(void, Move)(INT x, INT y, INT nWidth, INT nHeight);
     STDMETHOD_(BOOL, AnimateWnd)(DWORD dwTime, DWORD dwFlags);
     STDMETHOD_(void, OnObjectMoved)(CUIFObject *pObject);
-    STDMETHOD_(void, OnPointingEnded)(LONG x, LONG y) { }
+    STDMETHOD_(void, OnMouseOutFromWindow)(LONG x, LONG y) { }
     STDMETHOD_(void, OnCreate)(HWND hWnd) { }
     STDMETHOD_(void, OnDestroy)(HWND hWnd) { }
     STDMETHOD_(void, OnNCDestroy)(HWND hWnd) { }
@@ -2976,7 +2976,7 @@ CUIFWindow::WindowProc(HWND hWnd, UINT uMsg, WPARAM 
wParam, LPARAM lParam)
                         ::KillTimer(m_hWnd, POINTING_TIMER_ID);
                         m_bPointing = FALSE;
                         SetObjectPointed(NULL, pt2);
-                        OnPointingEnded(pt2.x, pt2.y);
+                        OnMouseOutFromWindow(pt2.x, pt2.y);
                     }
 
                     if (m_pToolTip)

Reply via email to