You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
654 B
30 lines
654 B
--- gtk+-1.2.10/gtk/gtktypeutils.h.alignment Fri Aug 18 17:36:34 2000
|
|
+++ gtk+-1.2.10/gtk/gtktypeutils.h Tue Jul 3 21:07:40 2001
|
|
@@ -191,6 +191,13 @@
|
|
GtkTypeClass *klass;
|
|
};
|
|
|
|
+#ifdef __GNUC__
|
|
+struct _GtkTypeClassDummyAlign
|
|
+{
|
|
+ GtkType type;
|
|
+ guint *signals;
|
|
+};
|
|
+#endif /* __GNUC__ */
|
|
|
|
/* A GtkTypeClass defines the minimum structure requirements for
|
|
* a types class. Classes returned from gtk_type_class () and
|
|
@@ -203,7 +210,11 @@
|
|
* one unique identifier per class.
|
|
*/
|
|
GtkType type;
|
|
-};
|
|
+}
|
|
+#ifdef __GNUC__
|
|
+__attribute__ ((aligned (__alignof (struct _GtkTypeClassDummyAlign))))
|
|
+#endif /* __GNUC__ */
|
|
+;
|
|
|
|
|
|
struct _GtkArg
|