aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-storage-listener.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-09-09 00:52:31 +0800
committerChris Lahey <clahey@src.gnome.org>2000-09-09 00:52:31 +0800
commit48c3fcd45d757f8e60e7ed37ca96fd843e690d0b (patch)
tree9c3b922f2b3a85113bd20ad5b5d2c884e8eab5fa /shell/evolution-storage-listener.c
parent7816388a7ab06deb31f269c0f716eea5a62c9666 (diff)
downloadgsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar.gz
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar.bz2
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar.lz
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar.xz
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.tar.zst
gsoc2013-evolution-48c3fcd45d757f8e60e7ed37ca96fd843e690d0b.zip
Added base ETableModel functions.
2000-09-08 Christopher James Lahey <clahey@helixcode.com> * e-storage-set-view.c: Added base ETableModel functions. * evolution-storage-listener.c, evolution-storage.c: Fixed some warnings. svn path=/trunk/; revision=5267
Diffstat (limited to 'shell/evolution-storage-listener.c')
-rw-r--r--shell/evolution-storage-listener.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/evolution-storage-listener.c b/shell/evolution-storage-listener.c
index e051c1d2ea..ee45e442ea 100644
--- a/shell/evolution-storage-listener.c
+++ b/shell/evolution-storage-listener.c
@@ -38,7 +38,7 @@ static GtkObjectClass *parent_class = NULL;
struct _EvolutionStorageListenerPrivate {
Evolution_StorageListener corba_objref;
- EvolutionStorageListenerServant *servant;
+ POA_Evolution_StorageListener *servant;
};
@@ -287,13 +287,12 @@ evolution_storage_listener_new (void)
EvolutionStorageListener *new;
EvolutionStorageListenerPrivate *priv;
Evolution_StorageListener corba_objref;
- POA_Evolution_StorageListener *servant;
new = gtk_type_new (evolution_storage_listener_get_type ());
priv = new->priv;
priv->servant = create_servant (new);
- corba_objref = activate_servant (new, servant);
+ corba_objref = activate_servant (new, priv->servant);
evolution_storage_listener_construct (new, corba_objref);