[gtk/ebassi/gidocgen: 172/483] flowbow: Mark private fields as private




commit 91dcdbafcea61a819f79e3da806a96797c0be1d7
Author: Emmanuele Bassi <ebassi gnome org>
Date:   Thu Feb 25 11:25:05 2021 +0000

    flowbow: Mark private fields as private

 gtk/gtkflowbox.h | 4 ++++
 1 file changed, 4 insertions(+)
---
diff --git a/gtk/gtkflowbox.h b/gtk/gtkflowbox.h
index 1b8f811553..d620bc4c6d 100644
--- a/gtk/gtkflowbox.h
+++ b/gtk/gtkflowbox.h
@@ -51,15 +51,19 @@ typedef struct _GtkFlowBoxChildClass  GtkFlowBoxChildClass;
 
 struct _GtkFlowBoxChild
 {
+  /*< private >*/
   GtkWidget parent_instance;
 };
 
 struct _GtkFlowBoxChildClass
 {
+  /*< private >*/
   GtkWidgetClass parent_class;
 
+  /*< public >*/
   void (* activate) (GtkFlowBoxChild *child);
 
+  /*< private >*/
   gpointer padding[8];
 };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]