summaryrefslogtreecommitdiff
path: root/gtk/gtklistbox.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2013-07-02 13:44:17 +0200
committerAlexander Larsson <alexl@redhat.com>2013-07-02 13:44:17 +0200
commit2a81d6f3965bbf0eb045cd6cb5242f6f16d85ea6 (patch)
tree6c6ed6428a3036eb845de46075d2ef23e5150983 /gtk/gtklistbox.h
parent06a808cf2ac58ae4e37e7b4e30391bc0df86a718 (diff)
downloadgtk+-2a81d6f3965bbf0eb045cd6cb5242f6f16d85ea6.tar.gz
listbox: Use new private model, remove priv pointer
Diffstat (limited to 'gtk/gtklistbox.h')
-rw-r--r--gtk/gtklistbox.h6
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