listbox: Use new private model, remove priv pointer

This commit is contained in:
Alexander Larsson
2013-07-02 13:44:17 +02:00
parent 06a808cf2a
commit 2a81d6f396
2 changed files with 127 additions and 132 deletions

View File

@ -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