diff options
author | Dan Winship <danw@src.gnome.org> | 2003-01-14 02:51:39 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-01-14 02:51:39 +0800 |
commit | 092ccc49c41a41cb3b395750d3a0b0a201f72151 (patch) | |
tree | 9df48d4c79bee096427cffdcb102d9fced6998f5 /shell/evolution-shell-component-dnd.h | |
parent | efa11b778153e179c7739e6fe8ed7622f0fdfe27 (diff) | |
download | gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.gz gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.zst gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.zip |
s/BonoboXObject/BonoboObject/ (for BONOBO_DISABLE_DEPRECATED)
* s/BonoboXObject/BonoboObject/ (for BONOBO_DISABLE_DEPRECATED)
svn path=/trunk/; revision=19427
Diffstat (limited to 'shell/evolution-shell-component-dnd.h')
-rw-r--r-- | shell/evolution-shell-component-dnd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/evolution-shell-component-dnd.h b/shell/evolution-shell-component-dnd.h index c97c625d3c..25922bca97 100644 --- a/shell/evolution-shell-component-dnd.h +++ b/shell/evolution-shell-component-dnd.h @@ -23,7 +23,7 @@ #ifndef EVOLUTION_SHELL_COMPONENT_DND_H #define EVOLUTION_SHELL_COMPONENT_DND_H -#include <bonobo/bonobo-xobject.h> +#include <bonobo/bonobo-object.h> #include <gtk/gtktypeutils.h> #include "Evolution.h" @@ -65,12 +65,12 @@ typedef void (*DndSourceFolderEndDragFn)(EvolutionShellComponentDndSourceFolder gpointer closure); struct _EvolutionShellComponentDndSourceFolder { - BonoboXObject object; + BonoboObject object; DndSourceFolderPrivate *priv; }; struct _EvolutionShellComponentDndSourceFolderClass { - BonoboXObjectClass parent_class; + BonoboObjectClass parent_class; POA_GNOME_Evolution_ShellComponentDnd_SourceFolder__epv epv; }; @@ -112,12 +112,12 @@ typedef CORBA_boolean (*DndDestinationFolderHandleDropFn)(EvolutionShellComponen gpointer closure); struct _EvolutionShellComponentDndDestinationFolder { - BonoboXObject object; + BonoboObject object; DndDestinationFolderPrivate *priv; }; struct _EvolutionShellComponentDndDestinationFolderClass { - BonoboXObjectClass parent_class; + BonoboObjectClass parent_class; POA_GNOME_Evolution_ShellComponentDnd_DestinationFolder__epv epv; }; |