From: Michael Stefaniuc Subject: comctl32: Get rid of TOOLTIPS_SetMargin(), it is just a RECT assignment. Message-Id: <20160719075329.GG29038@redhat.com> Date: Tue, 19 Jul 2016 09:53:29 +0200 Signed-off-by: Michael Stefaniuc --- dlls/comctl32/tooltips.c | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/dlls/comctl32/tooltips.c b/dlls/comctl32/tooltips.c index eed113e..a0c7ade 100644 --- a/dlls/comctl32/tooltips.c +++ b/dlls/comctl32/tooltips.c @@ -1599,18 +1599,6 @@ TOOLTIPS_SetDelayTime (TOOLTIPS_INFO *infoPtr, DWORD duration, INT nTime) } -static LRESULT -TOOLTIPS_SetMargin (TOOLTIPS_INFO *infoPtr, const RECT *lpRect) -{ - infoPtr->rcMargin.left = lpRect->left; - infoPtr->rcMargin.right = lpRect->right; - infoPtr->rcMargin.bottom = lpRect->bottom; - infoPtr->rcMargin.top = lpRect->top; - - return 0; -} - - static inline LRESULT TOOLTIPS_SetMaxTipWidth (TOOLTIPS_INFO *infoPtr, INT MaxWidth) { @@ -2261,7 +2249,8 @@ TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) return TOOLTIPS_SetDelayTime (infoPtr, (DWORD)wParam, (INT)LOWORD(lParam)); case TTM_SETMARGIN: - return TOOLTIPS_SetMargin (infoPtr, (LPRECT)lParam); + infoPtr->rcMargin = *(RECT*)lParam; + return 0; case TTM_SETMAXTIPWIDTH: return TOOLTIPS_SetMaxTipWidth (infoPtr, (INT)lParam); -- 2.4.11