[SDK] cicutf.h: s/OnPointingEnded/OnMouseOutFromWindow/ (#6461)

Supporting Language Bar...
JIRA issue: CORE-19363
Renaming method.
This commit is contained in:
Katayama Hirofumi MZ 2024-02-08 14:13:59 +09:00 committed by GitHub
parent 1f28f715ba
commit 3581a79ebf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)