GtkEntryBufferPrivate: Improve struct packing

This commit is contained in:
Matthias Clasen 2011-04-12 12:32:29 -04:00
parent a4e52ece33
commit b3ca94a44e

View File

@ -69,13 +69,13 @@ static guint signals[LAST_SIGNAL] = { 0 };
struct _GtkEntryBufferPrivate
{
gint max_length;
/* Only valid if this class is not derived */
gchar *normal_text;
gsize normal_text_size;
gsize normal_text_bytes;
guint normal_text_chars;
gint max_length;
};
G_DEFINE_TYPE (GtkEntryBuffer, gtk_entry_buffer, G_TYPE_OBJECT);