aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-21 02:04:57 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-21 02:04:57 +0800
commit40b258c469d52ff86e0806a9de834049292d58a7 (patch)
tree1c26c98725ce3714a885aee72990c1f9f129b13d
parent9959905f02aab6a2fa47102ea77815acb8f6dfd0 (diff)
downloadgsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar.gz
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar.bz2
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar.lz
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar.xz
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.tar.zst
gsoc2013-epiphany-40b258c469d52ff86e0806a9de834049292d58a7.zip
Fix stupid bug.
2004-05-20 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-history.c: (ephy_history_set_property), (ephy_history_get_property): Fix stupid bug.
-rw-r--r--ChangeLog7
-rw-r--r--embed/ephy-history.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ceffa9749..a290bf79e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-05-20 Christian Persch <chpe@cvs.gnome.org>
+ * embed/ephy-history.c: (ephy_history_set_property),
+ (ephy_history_get_property):
+
+ Fix stupid bug.
+
+2004-05-20 Christian Persch <chpe@cvs.gnome.org>
+
* help/Makefile.am:
Remove "es" from build, it's missing the figures. Fixes bug #142846.
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index 300c601a0..4adca27cd 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -133,7 +133,7 @@ ephy_history_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec)
{
- EphyHistory *history = EPHY_HISTORY (history);
+ EphyHistory *history = EPHY_HISTORY (object);
switch (prop_id)
{
@@ -149,7 +149,7 @@ ephy_history_get_property (GObject *object,
GValue *value,
GParamSpec *pspec)
{
- EphyHistory *history = EPHY_HISTORY (history);
+ EphyHistory *history = EPHY_HISTORY (object);
switch (prop_id)
{