diff options
author | Michael Natterer <mitch@imendio.com> | 2008-06-20 12:24:44 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-06-20 12:24:44 +0000 |
commit | 1c453c8849b1ec053e674225e5b880e3ce29800d (patch) | |
tree | c5d7d8f4026feaec85286dad22567228426ce350 /gtk/gtkhandlebox.h | |
parent | a44c258282e7f81b15a0149d48e87473ca14d226 (diff) | |
download | gtk+-1c453c8849b1ec053e674225e5b880e3ce29800d.tar.gz |
deuglify formatting of sealed fields.
2008-06-20 Michael Natterer <mitch@imendio.com>
* gtk/gtkhandlebox.h (struct _GtkHandleBox): deuglify formatting
of sealed fields.
svn path=/trunk/; revision=20636
Diffstat (limited to 'gtk/gtkhandlebox.h')
-rw-r--r-- | gtk/gtkhandlebox.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gtk/gtkhandlebox.h b/gtk/gtkhandlebox.h index 62161221be..b73bdd3968 100644 --- a/gtk/gtkhandlebox.h +++ b/gtk/gtkhandlebox.h @@ -68,13 +68,14 @@ struct _GtkHandleBox guint GSEAL (shrink_on_detach) : 1; signed int GSEAL (snap_edge : 3); /* -1 == unset */ - + /* Variables used during a drag */ - gint GSEAL (deskoff_x), GSEAL (deskoff_y); /* Offset between root relative coordinates - * and deskrelative coordinates */ - GtkAllocation GSEAL (attach_allocation); - GtkAllocation GSEAL (float_allocation); + gint GSEAL (deskoff_x); /* Offset between root relative coordinates */ + gint GSEAL (deskoff_y); /* and deskrelative coordinates */ + + GtkAllocation GSEAL (attach_allocation); + GtkAllocation GSEAL (float_allocation); }; struct _GtkHandleBoxClass |