diff options
author | Adam Hooper <adamh@src.gnome.org> | 2004-01-31 11:16:29 +0800 |
---|---|---|
committer | Adam Hooper <adamh@src.gnome.org> | 2004-01-31 11:16:29 +0800 |
commit | 6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9 (patch) | |
tree | 8896ba8d34a7d065ca011d78ad90cbf1787f6aea | |
parent | 542a341ce0b912079d827809624722a77371b92b (diff) | |
download | gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar.gz gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar.bz2 gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar.lz gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar.xz gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.tar.zst gsoc2013-epiphany-6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9.zip |
Obvious typo fix
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tab.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-01-30 Adam Hooper <adamh@cvs.gnome.org> + + * src/ephy-tab.c: (ephy_tab_class_init): + + Fix typo: s/PROP_LOAD_STATUS/PROP_LOAD_PROGRESS. + 2004-01-30 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/ContentHandler.cpp: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 519c5297b..2d62bc6de 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -271,7 +271,7 @@ ephy_tab_class_init (EphyTabClass *class) G_PARAM_READABLE)); g_object_class_install_property (object_class, - PROP_LOAD_STATUS, + PROP_LOAD_PROGRESS, g_param_spec_int ("load-progress", "Load progress", "The tab's load progress in percent", |