mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
Fix warnings by putting #ifdef GNOME2_CONVERSION_COMPLETE around unused
2002-01-03 Anders Carlsson <andersca@gnu.org> * src/nautilus-component-adapter-factory.c: Fix warnings by putting #ifdef GNOME2_CONVERSION_COMPLETE around unused functions and variables.
This commit is contained in:
parent
fa2a9d0085
commit
3aaa9809b4
2 changed files with 16 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-01-03 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* src/nautilus-component-adapter-factory.c: Fix warnings by
|
||||
putting #ifdef GNOME2_CONVERSION_COMPLETE around unused functions
|
||||
and variables.
|
||||
|
||||
2002-01-02 Darin Adler <darin@bentspoon.com>
|
||||
|
||||
* components/hardware/nautilus-hardware-view.c:
|
||||
|
|
|
@ -49,10 +49,11 @@ EEL_CLASS_BOILERPLATE (NautilusComponentAdapterFactory,
|
|||
nautilus_component_adapter_factory,
|
||||
GTK_TYPE_OBJECT)
|
||||
|
||||
|
||||
#if GNOME2_CONVERSION_COMPLETE
|
||||
static void
|
||||
activate_factory (NautilusComponentAdapterFactory *factory)
|
||||
{
|
||||
#if GNOME2_CONVERSION_COMPLETE
|
||||
BonoboObjectClient *object_client;
|
||||
|
||||
object_client = bonobo_object_activate (NAUTILUS_COMPONENT_ADAPTER_FACTORY_IID, 0);
|
||||
|
@ -63,7 +64,6 @@ activate_factory (NautilusComponentAdapterFactory *factory)
|
|||
factory->details->corba_factory = bonobo_object_query_interface
|
||||
(BONOBO_OBJECT (object_client), "IDL:Nautilus/ComponentAdapterFactory:1.0");
|
||||
bonobo_object_unref (BONOBO_OBJECT (object_client));
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -75,6 +75,8 @@ unref_factory (NautilusComponentAdapterFactory *factory)
|
|||
Bonobo_Unknown_unref (factory->details->corba_factory, &ev);
|
||||
CORBA_exception_free (&ev);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
static void
|
||||
release_factory (NautilusComponentAdapterFactory *factory)
|
||||
|
@ -87,6 +89,7 @@ release_factory (NautilusComponentAdapterFactory *factory)
|
|||
CORBA_exception_free (&ev);
|
||||
}
|
||||
|
||||
#ifdef GNOME2_CONVERSION_COMPLETE
|
||||
static Nautilus_ComponentAdapterFactory
|
||||
get_corba_factory (NautilusComponentAdapterFactory *factory)
|
||||
{
|
||||
|
@ -114,6 +117,7 @@ get_corba_factory (NautilusComponentAdapterFactory *factory)
|
|||
}
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
nautilus_component_adapter_factory_init (NautilusComponentAdapterFactory *factory)
|
||||
|
@ -176,7 +180,9 @@ nautilus_component_adapter_factory_create_adapter (NautilusComponentAdapterFacto
|
|||
{
|
||||
Nautilus_View nautilus_view;
|
||||
Bonobo_Control bonobo_control;
|
||||
#ifdef GNOME2_CONVERSION_COMPLETE
|
||||
Nautilus_ComponentAdapterFactory corba_factory;
|
||||
#endif
|
||||
CORBA_Environment ev;
|
||||
|
||||
CORBA_exception_init (&ev);
|
||||
|
@ -203,7 +209,7 @@ nautilus_component_adapter_factory_create_adapter (NautilusComponentAdapterFacto
|
|||
}
|
||||
} else {
|
||||
nautilus_view = CORBA_OBJECT_NIL;
|
||||
#if 0
|
||||
#ifdef GNOME2_CONVERSION_COMPLETE
|
||||
/* No View interface, we must adapt the object */
|
||||
|
||||
corba_factory = get_corba_factory (factory);
|
||||
|
@ -217,6 +223,6 @@ nautilus_component_adapter_factory_create_adapter (NautilusComponentAdapterFacto
|
|||
}
|
||||
|
||||
CORBA_exception_free (&ev);
|
||||
|
||||
|
||||
return nautilus_view;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue