diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-06-09 07:46:33 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-06-09 07:46:33 +0800 |
commit | 6a467a6645d7f8598082fc7e580206af95050804 (patch) | |
tree | b8e3e7bb9355834de8428da6645ee4967e97bb69 | |
parent | 4638f475184f14b5a299ed45882bad19afe62f2b (diff) | |
download | gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar.gz gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar.bz2 gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar.lz gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar.xz gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.tar.zst gsoc2013-epiphany-6a467a6645d7f8598082fc7e580206af95050804.zip |
Fix property IDs.
2004-06-09 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-tab.c: (ephy_tab_class_init):
Fix property IDs.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2004-06-09 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-tab.c: (ephy_tab_class_init): + + Fix property IDs. + 2004-06-08 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 73668100b..29faecedf 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -352,7 +352,7 @@ ephy_tab_class_init (EphyTabClass *class) G_PARAM_READABLE)); g_object_class_install_property (object_class, - PROP_LOAD_STATUS, + PROP_SECURITY, g_param_spec_int ("security-level", "Security Level", "The tab's security level", @@ -370,7 +370,7 @@ ephy_tab_class_init (EphyTabClass *class) G_PARAM_READABLE)); g_object_class_install_property (object_class, - PROP_LOAD_STATUS, + PROP_VISIBLE, g_param_spec_boolean ("visible", "Visibility", "The tab's visibility", |