]> Pileus Git - ~andy/gtk/commitdiff
Add some docs. (#316001, Guillaume Cottenceau)
authorMatthias Clasen <mclasen@redhat.com>
Tue, 13 Sep 2005 17:31:32 +0000 (17:31 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 13 Sep 2005 17:31:32 +0000 (17:31 +0000)
2005-09-13  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
(#316001, Guillaume Cottenceau)

ChangeLog
ChangeLog.pre-2-10
gtk/gtkfilechooser.c

index 5a4dccc290aaecf9b399d07464e68118b7d551e2..aa0e6eb5fe899faaba2f1c590e89c15748e49173 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
+       (#316001, Guillaume Cottenceau)
+
        * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
        mistake in the docs.  (#315993, Guillaume Cottenceau)
 
index 5a4dccc290aaecf9b399d07464e68118b7d551e2..aa0e6eb5fe899faaba2f1c590e89c15748e49173 100644 (file)
@@ -1,5 +1,8 @@
 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
+       (#316001, Guillaume Cottenceau)
+
        * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
        mistake in the docs.  (#315993, Guillaume Cottenceau)
 
index 6c3f36880ad88c2b4a027d49a5cbca8c3900e62c..005d56032e8b1058bd2c2a55a30ea2bb738d2423 100644 (file)
@@ -261,12 +261,21 @@ gtk_file_chooser_class_init (gpointer g_iface)
                                                             FALSE,
                                                             GTK_PARAM_READWRITE));
 
+  /**
+   * GtkFileChooser:do-overwrite-confirmation:
+   * 
+   * Whether a file chooser in %GTK_FILE_CHOOSER_ACTION_SAVE mode
+   * will present an overwrite confirmation dialog if the user
+   * selects a file name that already exists.
+   *
+   * Since: 2.8
+   */
   g_object_interface_install_property (g_iface,
                                       g_param_spec_boolean ("do-overwrite-confirmation",
                                                             P_("Do overwrite confirmation"),
-                                                            P_("Whether a file chooser in GTK_FILE_CHOOSER_ACTION_SAVE "
-                                                               "will present an overwrite confirmation dialog if the user "
-                                                               "selects a file name that already exists."),
+                                                            P_("Whether a file chooser in save mode"
+                                                               "will present an overwrite confirmation dialog "
+                                                               " if necessary."),
                                                             FALSE,
                                                             GTK_PARAM_READWRITE));
 }