diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-07-10 12:49:49 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-07-10 12:49:49 +0800 |
commit | 6db3f4828107c4aa9e648a8c7f8b71b0825593b2 (patch) | |
tree | 2e5acc512280cde555707fb5f8645760dbdedc51 | |
parent | c417a47019c45c3d556700ecb5e5ffb225fc0eb1 (diff) | |
download | gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar.gz gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar.bz2 gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar.lz gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar.xz gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.tar.zst gsoc2013-evolution-6db3f4828107c4aa9e648a8c7f8b71b0825593b2.zip |
Set bf->priv->file_db before calling do_create.
2001-07-10 Christopher James Lahey <clahey@ximian.com>
* backend/pas/pas-backend-file.c (pas_backend_file_load_uri): Set
bf->priv->file_db before calling do_create.
2001-07-06 Christopher James Lahey <clahey@ximian.com>
* gui/component/addressbook-component.c (factory_fn): Fixed order
of arguments to evolution_shell_component_new.
svn path=/trunk/; revision=10949
-rw-r--r-- | addressbook/ChangeLog | 10 | ||||
-rw-r--r-- | addressbook/backend/pas/pas-backend-file.c | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 026d3b6fb8..60307ed65c 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,13 @@ +2001-07-10 Christopher James Lahey <clahey@ximian.com> + + * backend/pas/pas-backend-file.c (pas_backend_file_load_uri): Set + bf->priv->file_db before calling do_create. + +2001-07-06 Christopher James Lahey <clahey@ximian.com> + + * gui/component/addressbook-component.c (factory_fn): Fixed order + of arguments to evolution_shell_component_new. + 2001-07-08 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-text-model.c diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c index 4f0b54dc61..56ce7dcd3d 100644 --- a/addressbook/backend/pas/pas-backend-file.c +++ b/addressbook/backend/pas/pas-backend-file.c @@ -1476,6 +1476,8 @@ pas_backend_file_load_uri (PASBackend *backend, db_error = db->open (db, filename, NULL, DB_HASH, 0, 0666); } + bf->priv->file_db = db; + if (db_error == 0) { writable = TRUE; } else { @@ -1507,12 +1509,13 @@ pas_backend_file_load_uri (PASBackend *backend, g_free (filename); + if (db_error != 0) { + bf->priv->file_db = NULL; return FALSE; } bf->priv->writable = writable; - bf->priv->file_db = db; if (pas_backend_file_maybe_upgrade_db (bf)) bf->priv->loaded = TRUE; diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index ea67fdf6e7..667904e4d1 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -334,8 +334,8 @@ factory_fn (BonoboGenericFactory *factory, shell_component = evolution_shell_component_new (folder_types, NULL, create_view, create_folder, remove_folder, xfer_folder, - get_dnd_selection, NULL, + get_dnd_selection, NULL); destination_interface = evolution_shell_component_dnd_destination_folder_new (destination_folder_handle_motion, |