about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/gtkclass.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/tools/gtkclass.c b/src/tools/gtkclass.c
index 8e9ea13f..97eac80d 100644
--- a/src/tools/gtkclass.c
+++ b/src/tools/gtkclass.c
@@ -1664,6 +1664,35 @@ static void bridgeGtkFixed2Instance(my_GtkFixed2_t* class)
 {
     bridgeGtkContainer2Instance(&class->parent);
 }
+
+// ----- GtkFixed3Class ------
+
+// wrap (so bridge all calls, just in case)
+static void wrapGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    wrapGtkWidget3Class(&class->parent_class);
+}
+// unwrap (and use callback if not a native call anymore)
+static void unwrapGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    unwrapGtkWidget3Class(&class->parent_class);
+}
+// autobridge
+static void bridgeGtkFixed3Class(my_GtkFixed3Class_t* class)
+{
+    bridgeGtkWidget3Class(&class->parent_class);
+}
+
+static void unwrapGtkFixed3Instance(my_GtkFixed3_t* class)
+{
+    unwrapGtkWidget3Instance(&class->parent);
+}
+// autobridge
+static void bridgeGtkFixed3Instance(my_GtkFixed3_t* class)
+{
+    bridgeGtkWidget3Instance(&class->parent);
+}
+
 // ----- MetaFrames2Class ------
 
 // wrap (so bridge all calls, just in case)