aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-09-26 02:50:34 +0800
committerChris Toshok <toshok@src.gnome.org>2002-09-26 02:50:34 +0800
commit7aaf603811ea4853f71edfbc407ed074588e6d5f (patch)
tree65a65ef404afeb9df35d31203b0e7570955f486d /addressbook/gui/component
parent6a5efeb0f98a88afbbe18af740df7a209bb1c71b (diff)
downloadgsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.gz
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.bz2
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.lz
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.xz
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.zst
gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.zip
free adapter->priv.
2002-09-23 Chris Toshok <toshok@ximian.com> * gui/widgets/e-addressbook-table-adapter.c (addressbook_destroy): free adapter->priv. * gui/widgets/e-addressbook-model.c (addressbook_destroy): free model->query. * gui/component/select-names/e-select-names-manager.c (load_completion_books): use e_book_expand_uri here, and free the expanded uri after calling addressbook_load_uri, plugging a leak. * gui/component/select-names/e-select-names.c (set_book): unref esn->model before we unref esn. fixes an edge case memory corruption bug. (clear_widget): utility function to set a widget's ref to NULL when it's destroyed. (e_select_names_init): hook the status_message, categories option menu, and select_entry to clear_widget. (addressbook_model_set_uri): use e_book_expand_uri. svn path=/trunk/; revision=18217
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-manager.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c
index 5c24e482fa..9bc06b52d9 100644
--- a/addressbook/gui/component/select-names/e-select-names-manager.c
+++ b/addressbook/gui/component/select-names/e-select-names-manager.c
@@ -23,6 +23,7 @@
#include "e-select-names-completion.h"
#include "e-select-names-popup.h"
#include "e-folder-list.h"
+#include <addressbook/backend/ebook/e-book-util.h>
#include <addressbook/backend/ebook/e-destination.h>
#include <addressbook/gui/component/addressbook.h>
#include <bonobo-conf/bonobo-config-database.h>
@@ -396,11 +397,11 @@ load_completion_books (ESelectNamesManager *manager)
EBook *book = e_book_new ();
gtk_object_ref (GTK_OBJECT (manager)); /* ref ourself before our async call */
- if (!strncmp (f->physical_uri, "file:", 5))
- uri = g_strdup_printf ("%s/addressbook.db", f->physical_uri);
- else
- uri = g_strdup (f->physical_uri);
+ uri = e_book_expand_uri (f->physical_uri);
+
addressbook_load_uri (book, uri, (EBookCallback)open_book_cb, manager);
+
+ g_free (uri);
}
e_folder_list_free_items (folders);
}