diff --git a/ChangeLog b/ChangeLog index 53d0b7ed90..d7dd829f46 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtk.symbols: Add the new functions. + * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for the confirm-overwrite signal. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 53d0b7ed90..d7dd829f46 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,7 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtk.symbols: Add the new functions. + * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for the confirm-overwrite signal. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 53d0b7ed90..d7dd829f46 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,7 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtk.symbols: Add the new functions. + * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for the confirm-overwrite signal. diff --git a/gtk/gtk.symbols b/gtk/gtk.symbols index d71ca8e341..df446f9e3c 100644 --- a/gtk/gtk.symbols +++ b/gtk/gtk.symbols @@ -1196,6 +1196,8 @@ gtk_file_chooser_get_preview_widget gtk_file_chooser_get_preview_widget_active gtk_file_chooser_get_select_multiple gtk_file_chooser_get_show_hidden +gtk_file_chooser_set_do_overwrite_confirmation +gtk_file_chooser_get_do_overwrite_confirmation gtk_file_chooser_get_type G_GNUC_CONST gtk_file_chooser_get_uri gtk_file_chooser_get_uris 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)