summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-07-08 01:53:39 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:49 +0200
commit37a499cea64d4d9a0180c37b902cab87e94e242d (patch)
tree51c0caaee2976622a88dd818e5c61ff0adbb9459
parente6bd773fdac0617e3439508954e8c6ab9ee3da0d (diff)
downloadgtk+-37a499cea64d4d9a0180c37b902cab87e94e242d.tar.gz
gtkrecentchooserdialog: unseal private pointer
-rw-r--r--gtk/gtkrecentchooserdialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkrecentchooserdialog.h b/gtk/gtkrecentchooserdialog.h
index cfcce51362..a2f9c79ee4 100644
--- a/gtk/gtkrecentchooserdialog.h
+++ b/gtk/gtkrecentchooserdialog.h
@@ -45,10 +45,10 @@ typedef struct _GtkRecentChooserDialogPrivate GtkRecentChooserDialogPrivate;
struct _GtkRecentChooserDialog
{
- /*< private >*/
GtkDialog parent_instance;
- GtkRecentChooserDialogPrivate *GSEAL (priv);
+ /*< private >*/
+ GtkRecentChooserDialogPrivate *priv;
};
struct _GtkRecentChooserDialogClass