comparison src/gui_beval.c @ 17262:041156ce1d22 v8.1.1630

patch 8.1.1630: various small problems commit https://github.com/vim/vim/commit/e809a4ed3014fbf717c936c727291b5f038829a5 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 4 17:35:05 2019 +0200 patch 8.1.1630: various small problems Problem: Various small problems. Solution: Various small improvements.
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Jul 2019 17:45:04 +0200
parents ff3c99bd1038
children 79e10adc821d
comparison
equal deleted inserted replaced
17261:432714f5c0f7 17262:041156ce1d22
105 { 105 {
106 iemsg(_("E232: Cannot create BalloonEval with both message and callback")); 106 iemsg(_("E232: Cannot create BalloonEval with both message and callback"));
107 return NULL; 107 return NULL;
108 } 108 }
109 109
110 beval = (BalloonEval *)alloc_clear(sizeof(BalloonEval)); 110 beval = ALLOC_CLEAR_ONE(BalloonEval);
111 if (beval != NULL) 111 if (beval != NULL)
112 { 112 {
113 #ifdef FEAT_GUI_GTK 113 #ifdef FEAT_GUI_GTK
114 beval->target = GTK_WIDGET(target); 114 beval->target = GTK_WIDGET(target);
115 #else 115 #else