aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-09-24 06:14:13 +0800
committerDan Winship <danw@src.gnome.org>2002-09-24 06:14:13 +0800
commitc4c3730179f1026f2d97b777e621af2d58e78944 (patch)
treede247ec184392b7c24f4f19049fe1ba91a31981a
parentccc7dbaf49012e66a2c1b344df20c8aa51c502dc (diff)
downloadgsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar.gz
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar.bz2
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar.lz
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar.xz
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.tar.zst
gsoc2013-evolution-c4c3730179f1026f2d97b777e621af2d58e78944.zip
Pass ev, not &ev to CORBA_Object_duplicate since ev is already a pointer.
* e-summary-offline-handler.c (impl_goOffline): Pass ev, not &ev to CORBA_Object_duplicate since ev is already a pointer. svn path=/trunk/; revision=18187
-rw-r--r--my-evolution/ChangeLog5
-rw-r--r--my-evolution/e-summary-offline-handler.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index ff35b94d2a..7ac003ada0 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-23 Dan Winship <danw@ximian.com>
+
+ * e-summary-offline-handler.c (impl_goOffline): Pass ev, not &ev
+ to CORBA_Object_duplicate since ev is already a pointer.
+
2002-09-23 Ettore Perazzoli <ettore@ximian.com>
* e-summary-weather.c (e_summary_weather_get_html): Don't add any
diff --git a/my-evolution/e-summary-offline-handler.c b/my-evolution/e-summary-offline-handler.c
index a9163b578e..ffa2b2aa12 100644
--- a/my-evolution/e-summary-offline-handler.c
+++ b/my-evolution/e-summary-offline-handler.c
@@ -177,7 +177,7 @@ impl_goOffline (PortableServer_Servant servant,
/* FIXME: If we have a progress already, then something is wrong and we
should raise an exception. */
- priv->listener_interface = CORBA_Object_duplicate (progress_listener, &ev);
+ priv->listener_interface = CORBA_Object_duplicate (progress_listener, ev);
for (sp = priv->summaries; sp != NULL; sp = sp->next) {
ESummary *summary;