summaryrefslogtreecommitdiffstats
path: root/src/gui_gtk_f.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
commit9bf703d46a79fbffeb829246ea5ce385bddc4166 (patch)
tree6afff788b4fbd8fbf61557c47c24c26c975ea8ee /src/gui_gtk_f.h
parent20ebbeac461ffc2a5e5dbfbb0ba380b8854615bd (diff)
patch 8.1.2366: using old C style commentsv8.1.2366
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/gui_gtk_f.h')
-rw-r--r--src/gui_gtk_f.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gui_gtk_f.h b/src/gui_gtk_f.h
index be7693a4da..5267c6acf7 100644
--- a/src/gui_gtk_f.h
+++ b/src/gui_gtk_f.h
@@ -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__