diff options
author | Larry Ewing <lewing@helixcode.com> | 2000-04-29 07:04:29 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2000-04-29 07:04:29 +0800 |
commit | 79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e (patch) | |
tree | 80b0580b93e1c75c0c530d2e2fb686cfc0397d18 | |
parent | 22127dc16ca6f456c468c7290b371e32fbd65b98 (diff) | |
download | gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar.gz gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar.bz2 gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar.lz gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar.xz gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.tar.zst gsoc2013-evolution-79970fcfc72d9de4990cbd0ea6d0939ac39ccf6e.zip |
fix the `USING_OAF' changes so that they work for when we are not using
2000-04-28 Larry Ewing <lewing@helixcode.com>
* backend/pas/pas-book-factory.c (register_factory): fix the
`USING_OAF' changes so that they work for when we are not using
oaf.
svn path=/trunk/; revision=2678
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/backend/pas/pas-book-factory.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index e197a8ae11..4cacb9027f 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2000-04-28 Larry Ewing <lewing@helixcode.com> + + * backend/pas/pas-book-factory.c (register_factory): fix the + `USING_OAF' changes so that they work for when we are not using + oaf. + 2000-04-27 Ettore Perazzoli <ettore@helixcode.com> * ename/Makefile.am diff --git a/addressbook/backend/pas/pas-book-factory.c b/addressbook/backend/pas/pas-book-factory.c index 651f17523d..93030447a7 100644 --- a/addressbook/backend/pas/pas-book-factory.c +++ b/addressbook/backend/pas/pas-book-factory.c @@ -340,9 +340,10 @@ static gboolean register_factory (CORBA_Object obj) { CORBA_Environment ev; - CORBA_exception_init (&ev); int ret; + CORBA_exception_init (&ev); + ret = goad_server_register (NULL, obj, PAS_BOOK_FACTORY_GOAD_ID, "server", &ev); if (ev._major != CORBA_NO_EXCEPTION) { |