comparison src/beval.h @ 20134:352701a626ed v8.2.0622

patch 8.2.0622: Haiku: GUI does not compile Commit: https://github.com/vim/vim/commit/beae4084fd34c56d43787be73588070ddc474251 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 23 15:41:49 2020 +0200 patch 8.2.0622: Haiku: GUI does not compile Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes https://github.com/vim/vim/issues/5961)
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Apr 2020 16:15:04 +0200
parents 2ef19eed524a
children
comparison
equal deleted inserted replaced
20133:fa4ed8427c0c 20134:352701a626ed
77 #endif 77 #endif
78 char_u *msg; // allocated: current text 78 char_u *msg; // allocated: current text
79 #ifdef FEAT_GUI_MSWIN 79 #ifdef FEAT_GUI_MSWIN
80 void *tofree; 80 void *tofree;
81 #endif 81 #endif
82 #ifdef FEAT_GUI_HAIKU
83 int x;
84 int y;
85 #endif
82 } BalloonEval; 86 } BalloonEval;
83 87
84 #define EVAL_OFFSET_X 15 // displacement of beval topleft corner from pointer 88 #define EVAL_OFFSET_X 15 // displacement of beval topleft corner from pointer
85 #define EVAL_OFFSET_Y 10 89 #define EVAL_OFFSET_Y 10
86 90