From cdf0442d009ea97fad06d72231f7de309c75205a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 27 Aug 2015 22:25:10 +0200 Subject: [PATCH] patch 7.4.842 Problem: Sending too many messages to close the balloon. Solution: Only send a WM_CLOSE message. (Jurgen Kramer) --- src/gui_w32.c | 2 -- src/version.c | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui_w32.c b/src/gui_w32.c index 20e94c3690..b35c8ab8fa 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4837,8 +4837,6 @@ delete_tooltip(beval) BalloonEval *beval; { PostMessage(beval->balloon, WM_CLOSE, 0, 0); - PostMessage(beval->balloon, WM_DESTROY, 0, 0); - PostMessage(beval->balloon, WM_NCDESTROY, 0, 0); } /*ARGSUSED*/ diff --git a/src/version.c b/src/version.c index bc95c5d6fd..37df414e78 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 842, /**/ 841, /**/