diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2001-10-02 00:55:44 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2001-10-02 00:55:44 +0800 |
commit | aef67f06125a23a6c17eeb29c994a94f6b6205a4 (patch) | |
tree | c7bbf990ee4c51503db95061cec43f231b3dd08c /calendar/pcs | |
parent | d74b078aeb365e099c2070ce2269c98ab6158f6f (diff) | |
download | gsoc2013-evolution-aef67f06125a23a6c17eeb29c994a94f6b6205a4.tar.gz gsoc2013-evolution-aef67f06125a23a6c17eeb29c994a94f6b6205a4.tar.zst gsoc2013-evolution-aef67f06125a23a6c17eeb29c994a94f6b6205a4.zip |
don't use gnome_vfs_uri_is_local on URIs created with
2001-10-01 Rodrigo Moya <rodrigo@ximian.com>
* gui/gnome-cal.c (gnome_calendar_open): don't use
gnome_vfs_uri_is_local on URIs created with
gnome_vfs_uri_new_private
svn path=/trunk/; revision=13262
Diffstat (limited to 'calendar/pcs')
-rw-r--r-- | calendar/pcs/cal-factory.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c index e7a7316193..32786861bd 100644 --- a/calendar/pcs/cal-factory.c +++ b/calendar/pcs/cal-factory.c @@ -436,14 +436,12 @@ impl_CalFactory_open (PortableServer_Servant servant, priv = factory->priv; /* check URI to see if we support it */ - CORBA_exception_init (&ev2); uri = gnome_vfs_uri_new_private (str_uri, TRUE, TRUE, TRUE); if (!uri) { CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_Calendar_CalFactory_InvalidURI, NULL); - CORBA_exception_free (&ev2); return; } @@ -455,11 +453,8 @@ impl_CalFactory_open (PortableServer_Servant servant, CORBA_exception_set (ev, CORBA_USER_EXCEPTION, ex_GNOME_Evolution_Calendar_CalFactory_UnsupportedMethod, NULL); - CORBA_exception_free (&ev2); return; } - - CORBA_exception_free (&ev2); /* duplicate the listener object */ CORBA_exception_init (&ev2); |