comparison src/beval.h @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents 6e3dc2d630c2
children 352701a626ed
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
36 # ifdef FEAT_GUI_GTK 36 # ifdef FEAT_GUI_GTK
37 GtkWidget *target; // widget we are monitoring 37 GtkWidget *target; // widget we are monitoring
38 GtkWidget *balloonShell; 38 GtkWidget *balloonShell;
39 GtkWidget *balloonLabel; 39 GtkWidget *balloonLabel;
40 unsigned int timerID; // timer for run 40 unsigned int timerID; // timer for run
41 BeState showState; // tells us whats currently going on 41 BeState showState; // tells us what's currently going on
42 int x; 42 int x;
43 int y; 43 int y;
44 unsigned int state; // Button/Modifier key state 44 unsigned int state; // Button/Modifier key state
45 # else 45 # else
46 # if !defined(FEAT_GUI_MSWIN) 46 # if !defined(FEAT_GUI_MSWIN)
47 Widget target; // widget we are monitoring 47 Widget target; // widget we are monitoring
48 Widget balloonShell; 48 Widget balloonShell;
49 Widget balloonLabel; 49 Widget balloonLabel;
50 XtIntervalId timerID; // timer for run 50 XtIntervalId timerID; // timer for run
51 BeState showState; // tells us whats currently going on 51 BeState showState; // tells us what's currently going on
52 XtAppContext appContext; // used in event handler 52 XtAppContext appContext; // used in event handler
53 Position x; 53 Position x;
54 Position y; 54 Position y;
55 Position x_root; 55 Position x_root;
56 Position y_root; 56 Position y_root;
58 # else 58 # else
59 HWND target; 59 HWND target;
60 HWND balloon; 60 HWND balloon;
61 int x; 61 int x;
62 int y; 62 int y;
63 BeState showState; // tells us whats currently going on 63 BeState showState; // tells us what's currently going on
64 # endif 64 # endif
65 # endif 65 # endif
66 # if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MSWIN) 66 # if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MSWIN)
67 Dimension screen_width; // screen width in pixels 67 Dimension screen_width; // screen width in pixels
68 Dimension screen_height; // screen height in pixels 68 Dimension screen_height; // screen height in pixels