mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.1.2366: using old C style comments
Problem: Using old C style comments. Solution: Use // comments where appropriate.
This commit is contained in:
@@ -70,10 +70,9 @@ void gtk_form_move_resize(GtkForm * form, GtkWidget * widget,
|
||||
gint x, gint y,
|
||||
gint w, gint h);
|
||||
|
||||
/* These disable and enable moving and repainting respectively. If you
|
||||
* want to update the layout's offsets but do not want it to repaint
|
||||
* itself, you should use these functions.
|
||||
*/
|
||||
// These disable and enable moving and repainting respectively. If you
|
||||
// want to update the layout's offsets but do not want it to repaint
|
||||
// itself, you should use these functions.
|
||||
|
||||
void gtk_form_freeze(GtkForm *form);
|
||||
void gtk_form_thaw(GtkForm *form);
|
||||
@@ -82,4 +81,4 @@ void gtk_form_thaw(GtkForm *form);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* __GTK_FORM_H__ */
|
||||
#endif // __GTK_FORM_H__
|
||||
|
Reference in New Issue
Block a user