aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/ephy-tab.c6
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3903124b1..6339ba458 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-08-10 Crispin Flowerday <gnome@flowerday.cx>
+
+ * 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.
+
2005-08-09 Raphael Slinckx <rslinckx@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp:
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,