diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-07-06 04:37:38 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-13 19:40:49 +0200 |
commit | 8c041cde30604d05aa17501f2555e5b0596a262f (patch) | |
tree | 1f7bcdd8dbb8dd28d412c93c601152baae26aed1 /gtk/gtkpaned.h | |
parent | 92a1382bd661684cd7930041609397f38029f352 (diff) | |
download | gtk+-8c041cde30604d05aa17501f2555e5b0596a262f.tar.gz |
GtkPaned: move public members to private structure
Diffstat (limited to 'gtk/gtkpaned.h')
-rw-r--r-- | gtk/gtkpaned.h | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/gtk/gtkpaned.h b/gtk/gtkpaned.h index 1a2861165d..ed968e4685 100644 --- a/gtk/gtkpaned.h +++ b/gtk/gtkpaned.h @@ -51,37 +51,8 @@ struct _GtkPaned { GtkContainer container; - GtkWidget *GSEAL (child1); - GtkWidget *GSEAL (child2); - - GdkWindow *GSEAL (handle); - GdkGC *GSEAL (xor_gc); - GdkCursorType GSEAL (cursor_type); - /*< private >*/ - GdkRectangle GSEAL (handle_pos); - - gint GSEAL (child1_size); - gint GSEAL (last_allocation); - gint GSEAL (min_position); - gint GSEAL (max_position); - - guint GSEAL (position_set) : 1; - guint GSEAL (in_drag) : 1; - guint GSEAL (child1_shrink) : 1; - guint GSEAL (child1_resize) : 1; - guint GSEAL (child2_shrink) : 1; - guint GSEAL (child2_resize) : 1; - guint GSEAL (orientation) : 1; - guint GSEAL (in_recursion) : 1; - guint GSEAL (handle_prelit) : 1; - - GtkWidget *GSEAL (last_child1_focus); - GtkWidget *GSEAL (last_child2_focus); - GtkPanedPrivate *GSEAL (priv); - - gint GSEAL (drag_pos); - gint GSEAL (original_position); + GtkPanedPrivate *priv; }; struct _GtkPanedClass |