comparison src/gui_gtk_f.h @ 18753:6e3dc2d630c2 v8.1.2366

patch 8.1.2366: using old C style comments Commit: https://github.com/vim/vim/commit/9bf703d46a79fbffeb829246ea5ce385bddc4166 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 19:44:38 2019 +0100 patch 8.1.2366: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 19:45:03 +0100
parents cd8dbed175a1
children 8623ab39b421
comparison
equal deleted inserted replaced
18752:9ec3c9cb4533 18753:6e3dc2d630c2
68 68
69 void gtk_form_move_resize(GtkForm * form, GtkWidget * widget, 69 void gtk_form_move_resize(GtkForm * form, GtkWidget * widget,
70 gint x, gint y, 70 gint x, gint y,
71 gint w, gint h); 71 gint w, gint h);
72 72
73 /* These disable and enable moving and repainting respectively. If you 73 // These disable and enable moving and repainting respectively. If you
74 * want to update the layout's offsets but do not want it to repaint 74 // want to update the layout's offsets but do not want it to repaint
75 * itself, you should use these functions. 75 // itself, you should use these functions.
76 */
77 76
78 void gtk_form_freeze(GtkForm *form); 77 void gtk_form_freeze(GtkForm *form);
79 void gtk_form_thaw(GtkForm *form); 78 void gtk_form_thaw(GtkForm *form);
80 79
81 80
82 #ifdef __cplusplus 81 #ifdef __cplusplus
83 } 82 }
84 #endif 83 #endif
85 #endif /* __GTK_FORM_H__ */ 84 #endif // __GTK_FORM_H__