summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-08-27 22:25:10 +0200
committerBram Moolenaar <Bram@vim.org>2015-08-27 22:25:10 +0200
commitcdf0442d009ea97fad06d72231f7de309c75205a (patch)
tree83cdd41de9119e0fe74db34f9af5fa9b4869ba0d /src
parent5ea87a04964b0ccd017380b8247d04d2a69f6062 (diff)
patch 7.4.842v7.4.842
Problem: Sending too many messages to close the balloon. Solution: Only send a WM_CLOSE message. (Jurgen Kramer)
Diffstat (limited to 'src')
-rw-r--r--src/gui_w32.c2
-rw-r--r--src/version.c2
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
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 842,
+/**/
841,
/**/
840,