diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-13 02:12:04 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-13 02:12:04 +0800 |
commit | e9faa62d2f9f6bae897c2f718ee25b5a78e159c7 (patch) | |
tree | a181fc77a7125689fc33b5a208eaaf4cf6efcc6b /addressbook/backend | |
parent | 88f9174bfd2a9177e7f9298ec40d6b7b331286a9 (diff) | |
download | gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar.gz gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar.bz2 gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar.lz gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar.xz gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.tar.zst gsoc2013-evolution-e9faa62d2f9f6bae897c2f718ee25b5a78e159c7.zip |
Added addressbook/gui/search/Makefile.
2000-08-12 Christopher James Lahey <clahey@helixcode.com>
* configure.in: Added addressbook/gui/search/Makefile.
From addressbook/ChangeLog
2000-08-12 Christopher James Lahey <clahey@helixcode.com>
* gui/Makefile.am: Added the search directory.
* backend/ebook/e-book.c: Fixed a potential crash.
* gui/minicard/e-reflow-sorted.h: Fixed an include line.
* gui/search/.cvsignore, gui/search/Makefile.am: New files.
* gui/search/e-addressbook-search-dialog.c: Fixed compilation.
svn path=/trunk/; revision=4779
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/ebook/e-book.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/backend/ebook/e-book.c b/addressbook/backend/ebook/e-book.c index ce1c663073..38179559ba 100644 --- a/addressbook/backend/ebook/e-book.c +++ b/addressbook/backend/ebook/e-book.c @@ -406,7 +406,7 @@ e_book_unload_uri (EBook *book) * FIXME: Make sure this works if the URI is still being * loaded. */ - if (book->priv->load_state == URINotLoaded) { + if (book->priv->load_state != URILoaded) { g_warning ("e_book_unload_uri: No URI is loaded!\n"); return; } @@ -943,7 +943,7 @@ e_book_destroy (GtkObject *object) EBook *book = E_BOOK (object); CORBA_Environment ev; - if (book->priv->load_state != URINotLoaded) + if (book->priv->load_state == URILoaded) e_book_unload_uri (book); CORBA_exception_init (&ev); |