diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-08-10 17:19:05 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-08-10 17:19:05 +0800 |
commit | ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f (patch) | |
tree | 6966b2036a64a39ddcfe7e8f5b301d717e0fe19d /src | |
parent | c9b5d2f7ebcb4780cee7bff0ffa9ea235add12ce (diff) | |
download | gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar.gz gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar.bz2 gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar.lz gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar.xz gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.tar.zst gsoc2013-epiphany-ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f.zip |
Make a few properties to be writable (where there is appropriate code in
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-tab.c | 6 |
1 files changed, 3 insertions, 3 deletions
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, |