diff options
author | Michael Natterer <mitch@imendio.com> | 2008-06-20 13:23:22 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-06-20 13:23:22 +0000 |
commit | 7cd4eb5650cd556f20ae7671a3c753f6de76c541 (patch) | |
tree | d8f4d5e89d6485a2e65a1d560ec9acde01482a05 /gtk/gtkdialog.c | |
parent | 1c453c8849b1ec053e674225e5b880e3ce29800d (diff) | |
download | gtk+-7cd4eb5650cd556f20ae7671a3c753f6de76c541.tar.gz |
change return value from GtkHButtonBox to GtkWidget.
2008-06-20 Michael Natterer <mitch@imendio.com>
* gtk/gtkdialog.c (gtk_dialog_get_action_area): change return
value from GtkHButtonBox to GtkWidget.
svn path=/trunk/; revision=20637
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index 6aac6c95d6..99bd11cd2f 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -1485,11 +1485,11 @@ gtk_dialog_buildable_custom_finished (GtkBuildable *buildable, * * Returns the action area of @dialog. * - * Returns: a #GtkHButtonBox. + * Returns: the action area. * * Since: GSEAL-branch **/ -GtkHButtonBox * +GtkWidget * gtk_dialog_get_action_area (GtkDialog *dialog) { g_return_val_if_fail (GTK_IS_DIALOG (dialog), NULL); |