[nautilus] bookmark: don't make the name/custom-name props construct-only



commit 8f5d29b21b2ab82250bf516f9263aa473dfd64f1
Author: Stefano Teso <stefano teso gmail com>
Date:   Fri Feb 4 16:20:18 2011 -0500

    bookmark: don't make the name/custom-name props construct-only
    
    This was probably a typo from the refactoring of the object.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=641484

 libnautilus-private/nautilus-bookmark.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libnautilus-private/nautilus-bookmark.c b/libnautilus-private/nautilus-bookmark.c
index 26c9105..7bc26f5 100644
--- a/libnautilus-private/nautilus-bookmark.c
+++ b/libnautilus-private/nautilus-bookmark.c
@@ -387,14 +387,14 @@ nautilus_bookmark_class_init (NautilusBookmarkClass *class)
 				     "Bookmark's name",
 				     "The name of this bookmark",
 				     NULL,
-				     G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY);
+				     G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 
 	properties[PROP_CUSTOM_NAME] =
 		g_param_spec_boolean ("custom-name",
 				      "Whether the bookmark has a custom name",
 				      "Whether the bookmark has a custom name",
 				      FALSE,
-				      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY);
+				      G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
 
 	properties[PROP_LOCATION] =
 		g_param_spec_object ("location",



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]