A fix to make the setting of the vepv work. The extern vepv is gone, so we

2000-06-30  Gene Z. Ragan  <gzr@eazel.com>

	* libnautilus-extensions/bonobo-stream-vfs.c:
	(create_bonobo_stream_vfs):
	A fix to make the setting of the vepv work.  The extern
	vepv is gone, so we now use the allocator functions.
This commit is contained in:
Gene Z. Ragan 2000-06-30 18:28:51 +00:00 committed by Gene Ragan
parent d4f093ecaf
commit 3f4115d6e9
4 changed files with 13 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2000-06-30 Gene Z. Ragan <gzr@eazel.com>
* libnautilus-extensions/bonobo-stream-vfs.c:
(create_bonobo_stream_vfs):
A fix to make the setting of the vepv work. The extern
vepv is gone, so we now use the allocator functions.
2000-06-30 Andy Hertzfeld <andy@eazel.com>
* libnautilus-extensions/nautilus-background.c:

View file

@ -296,7 +296,8 @@ create_bonobo_stream_vfs (BonoboObject *object)
CORBA_Environment ev;
servant = (POA_Bonobo_Stream *) g_new0 (BonoboObjectServant, 1);
servant->vepv = &bonobo_stream_vepv;
servant->vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
servant->vepv->Bonobo_Stream_epv = bonobo_stream_get_epv ();
CORBA_exception_init (&ev);

View file

@ -296,7 +296,8 @@ create_bonobo_stream_vfs (BonoboObject *object)
CORBA_Environment ev;
servant = (POA_Bonobo_Stream *) g_new0 (BonoboObjectServant, 1);
servant->vepv = &bonobo_stream_vepv;
servant->vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
servant->vepv->Bonobo_Stream_epv = bonobo_stream_get_epv ();
CORBA_exception_init (&ev);

View file

@ -296,7 +296,8 @@ create_bonobo_stream_vfs (BonoboObject *object)
CORBA_Environment ev;
servant = (POA_Bonobo_Stream *) g_new0 (BonoboObjectServant, 1);
servant->vepv = &bonobo_stream_vepv;
servant->vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
servant->vepv->Bonobo_Stream_epv = bonobo_stream_get_epv ();
CORBA_exception_init (&ev);