From ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f Mon Sep 17 00:00:00 2001 From: Crispin Flowerday Date: Wed, 10 Aug 2005 09:19:05 +0000 Subject: Make a few properties to be writable (where there is appropriate code in 2005-08-10 Crispin Flowerday * src/ephy-tab.c (ephy_tab_class_init): Make a few properties to be writable (where there is appropriate code in the ephy_tab_set_property() function), and fix the 'icon' property to have the correct enum value. --- src/ephy-tab.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 75956e946..427e0a124 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -403,7 +403,7 @@ ephy_tab_class_init (EphyTabClass *class) G_PARAM_READABLE)); g_object_class_install_property (object_class, - PROP_ICON_ADDRESS, + PROP_ICON, g_param_spec_object ("icon", "Icon", "The tab icon's", @@ -416,7 +416,7 @@ ephy_tab_class_init (EphyTabClass *class) "Icon address", "The tab icon's address", NULL, - G_PARAM_READABLE)); + (G_PARAM_READABLE | G_PARAM_WRITABLE))); g_object_class_install_property (object_class, PROP_LOAD_PROGRESS, @@ -494,7 +494,7 @@ ephy_tab_class_init (EphyTabClass *class) "Typed Address", "The typed address", "", - G_PARAM_READWRITE)); + G_PARAM_READABLE | G_PARAM_WRITABLE)); g_object_class_install_property (object_class, PROP_VISIBLE, -- cgit v1.2.3