summaryrefslogtreecommitdiff
path: root/gtk/gtkassistant.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 10:57:29 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 10:57:29 +0000
commit112f03938c0d56f9edd38c001e624d672f9ca4ab (patch)
treeab32c1fae493014d4dac88cfe264204919625470 /gtk/gtkassistant.h
parent12b99bbd64bd6dd517ec51ff03bf5c7cbd68bc60 (diff)
downloadgtk+-112f03938c0d56f9edd38c001e624d672f9ca4ab.tar.gz
Seal GtkAssistant public fields
svn path=/trunk/; revision=20485
Diffstat (limited to 'gtk/gtkassistant.h')
-rw-r--r--gtk/gtkassistant.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkassistant.h b/gtk/gtkassistant.h
index 92d290f623..e59d7e94b0 100644
--- a/gtk/gtkassistant.h
+++ b/gtk/gtkassistant.h
@@ -59,15 +59,15 @@ struct _GtkAssistant
{
GtkWindow parent;
- GtkWidget *cancel;
- GtkWidget *forward;
- GtkWidget *back;
- GtkWidget *apply;
- GtkWidget *close;
- GtkWidget *last;
+ GtkWidget *GSEAL (cancel);
+ GtkWidget *GSEAL (forward);
+ GtkWidget *GSEAL (back);
+ GtkWidget *GSEAL (apply);
+ GtkWidget *GSEAL (close);
+ GtkWidget *GSEAL (last);
/*< private >*/
- GtkAssistantPrivate *priv;
+ GtkAssistantPrivate *GSEAL (priv);
};
struct _GtkAssistantClass