diff options
author | Federico Mena Quintero <federico@ximian.com> | 2005-07-15 06:11:38 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2005-07-15 06:11:38 +0000 |
commit | adc0905af3f7b49d2d946d235a5610a53f38ad9a (patch) | |
tree | e58e008d2d3b272dfe0713d7a9f83ce7db0c9d17 /gtk/gtkfilechooser.c | |
parent | 8ea4a9bb933046ed7bd67953660ea6be0ded72e9 (diff) | |
download | gtk+-adc0905af3f7b49d2d946d235a5610a53f38ad9a.tar.gz |
Add the new functions.
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtk.symbols: Add the new functions.
Diffstat (limited to 'gtk/gtkfilechooser.c')
-rw-r--r-- | gtk/gtkfilechooser.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gtk/gtkfilechooser.c b/gtk/gtkfilechooser.c index af870185a8..ecc4701018 100644 --- a/gtk/gtkfilechooser.c +++ b/gtk/gtkfilechooser.c @@ -189,12 +189,7 @@ gtk_file_chooser_class_init (gpointer g_iface) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); - /** - * GtkFileChooser::confirm-overwrite - * @chooser: the object which received the signal. - * - * FIXME - */ + /* Documented in the docbook files */ g_signal_new ("confirm-overwrite", iface_type, G_SIGNAL_RUN_LAST, @@ -1888,6 +1883,8 @@ gtk_file_chooser_get_show_hidden (GtkFileChooser *chooser) * You can override the way confirmation is done by actually handling the * "confirm-overwrite" signal; please refer to its documentation for the * details. + * + * Since: 2.8 **/ void gtk_file_chooser_set_do_overwrite_confirmation (GtkFileChooser *chooser, @@ -1907,6 +1904,8 @@ gtk_file_chooser_set_do_overwrite_confirmation (GtkFileChooser *chooser, * * Return value: %TRUE if the file chooser will present a confirmation dialog; * %FALSE otherwise. + * + * Since: 2.8 **/ gboolean gtk_file_chooser_get_do_overwrite_confirmation (GtkFileChooser *chooser) |