diff options
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary-offline-handler.c | 2 |
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; |