diff options
author | Alexander Larsson <alexl@redhat.com> | 2013-07-02 13:44:17 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2013-07-02 13:44:17 +0200 |
commit | 2a81d6f3965bbf0eb045cd6cb5242f6f16d85ea6 (patch) | |
tree | 6c6ed6428a3036eb845de46075d2ef23e5150983 /gtk/gtklistbox.h | |
parent | 06a808cf2ac58ae4e37e7b4e30391bc0df86a718 (diff) | |
download | gtk+-2a81d6f3965bbf0eb045cd6cb5242f6f16d85ea6.tar.gz |
listbox: Use new private model, remove priv pointer
Diffstat (limited to 'gtk/gtklistbox.h')
-rw-r--r-- | gtk/gtklistbox.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk/gtklistbox.h b/gtk/gtklistbox.h index 43594f8fc4..5410072292 100644 --- a/gtk/gtklistbox.h +++ b/gtk/gtklistbox.h @@ -40,17 +40,13 @@ G_BEGIN_DECLS typedef struct _GtkListBox GtkListBox; typedef struct _GtkListBoxClass GtkListBoxClass; -typedef struct _GtkListBoxPrivate GtkListBoxPrivate; typedef struct _GtkListBoxRow GtkListBoxRow; typedef struct _GtkListBoxRowClass GtkListBoxRowClass; -typedef struct _GtkListBoxRowPrivate GtkListBoxRowPrivate; struct _GtkListBox { GtkContainer parent_instance; - - GtkListBoxPrivate * priv; }; struct _GtkListBoxClass @@ -86,8 +82,6 @@ struct _GtkListBoxClass struct _GtkListBoxRow { GtkBin parent_instance; - - GtkListBoxRowPrivate * priv; }; struct _GtkListBoxRowClass |