summaryrefslogtreecommitdiff
path: root/gtk/gtktextattributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtktextattributes.h')
-rw-r--r--gtk/gtktextattributes.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/gtk/gtktextattributes.h b/gtk/gtktextattributes.h
index aa7d6f8aa8..12c1af7063 100644
--- a/gtk/gtktextattributes.h
+++ b/gtk/gtktextattributes.h
@@ -102,8 +102,12 @@ struct _GtkTextAppearance
guint inside_selection : 1;
guint is_text : 1;
- /*< private >*/
- guint padding[4];
+ GdkRGBA *rgba[2];
+
+#if __SIZEOF_INT__ == __SIZEOF_POINTER__
+ /* unusable, just for ABI compat */
+ guint padding[2];
+#endif
};
struct _GtkTextAttributes
@@ -155,7 +159,9 @@ struct _GtkTextAttributes
guint editable : 1;
/*< private >*/
- guint padding[4];
+ GdkRGBA *pg_bg_rgba;
+
+ guint padding[3];
};
GtkTextAttributes* gtk_text_attributes_new (void);