comparison src/gui_photon.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents ac42c4b11dbc
children 55ccc2d353bd
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
208 /* When a menu is unrealized, give focus back to vimTextArea */ 208 /* When a menu is unrealized, give focus back to vimTextArea */
209 static PtCallbackF_t gui_ph_handle_menu_unrealized; 209 static PtCallbackF_t gui_ph_handle_menu_unrealized;
210 210
211 #ifdef USE_PANEL_GROUP 211 #ifdef USE_PANEL_GROUP
212 static void gui_ph_get_panelgroup_margins(short*, short*, short*, short*); 212 static void gui_ph_get_panelgroup_margins(short*, short*, short*, short*);
213 #endif
214
215 #ifdef FEAT_TOOLBAR
216 static PhImage_t *gui_ph_toolbar_find_icon(vimmenu_T *menu);
217 #endif 213 #endif
218 214
219 static void gui_ph_draw_start(void); 215 static void gui_ph_draw_start(void);
220 static void gui_ph_draw_end(void); 216 static void gui_ph_draw_end(void);
221 217