diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-06-22 16:42:00 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-13 19:40:48 +0200 |
commit | f66ebd8e59ad4c2006b003e1d3e1c256deee7f1e (patch) | |
tree | c3b54bb09e51c8419c41d67f9d2e67ac3f4c3695 /gtk | |
parent | e1d182ce5ca28b6df720ae8d3eb50a532e1766f8 (diff) | |
download | gtk+-f66ebd8e59ad4c2006b003e1d3e1c256deee7f1e.tar.gz |
GtkIconTheme: unseal private pointer
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkicontheme.c | 7 | ||||
-rw-r--r-- | gtk/gtkicontheme.h | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 63dcee7843..fae73d7fa9 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -557,9 +557,10 @@ gtk_icon_theme_init (GtkIconTheme *icon_theme) GtkIconThemePrivate *priv; const gchar * const *xdg_data_dirs; int i, j; - - priv = g_type_instance_get_private ((GTypeInstance *)icon_theme, - GTK_TYPE_ICON_THEME); + + priv = G_TYPE_INSTANCE_GET_PRIVATE (icon_theme, + GTK_TYPE_ICON_THEME, + GtkIconThemePrivate); icon_theme->priv = priv; priv->custom_theme = FALSE; diff --git a/gtk/gtkicontheme.h b/gtk/gtkicontheme.h index 441a72afc2..6cdd3ca2a9 100644 --- a/gtk/gtkicontheme.h +++ b/gtk/gtkicontheme.h @@ -49,7 +49,7 @@ struct _GtkIconTheme /*< private >*/ GObject parent_instance; - GtkIconThemePrivate *GSEAL (priv); + GtkIconThemePrivate *priv; }; struct _GtkIconThemeClass |