diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-tab.c | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2004-06-12 Adam Hooper <adamh@cvs.gnome.org> + + * src/ephy-tab.c: (ephy_tab_class_init): + + Put proper property IDs on properties (PROP_LOAD_STATUS was there + three times). + 2004-06-12 Christian Persch <chpe@cvs.gnome.org> * lib/widgets/ephy-spinner.c: (ephy_spinner_new), diff --git a/src/ephy-tab.c b/src/ephy-tab.c index b7f2e1729..41e6fd2b6 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -341,7 +341,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", @@ -359,7 +359,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", |