aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-model.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-07-18 03:38:18 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-07-18 03:38:18 +0800
commit2890d2c2a1ffdd60f0540b04d7e569c0d8b84127 (patch)
treefdaa85b6d48fa5277798d7786b526e8fc63b552b /addressbook/gui/component/select-names/e-select-names-model.c
parent217e75d071c4de2305d44af930e7a6ebd7b453f0 (diff)
downloadgsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar.gz
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar.bz2
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar.lz
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar.xz
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.tar.zst
gsoc2013-evolution-2890d2c2a1ffdd60f0540b04d7e569c0d8b84127.zip
Hold a reference to our listener while the idle function is active.
2001-07-17 Jon Trowbridge <trow@ximian.com> * backend/ebook/e-book-view-listener.c (e_book_view_listener_queue_response): Hold a reference to our listener while the idle function is active. (e_book_view_listener_check_queue): Only unref the listener when the idle function is finished. * gui/component/select-names/e-select-names-manager.c (e_select_names_clicked): Instead of replacing section->model with source, copy source onto section->model with e_select_names_model_overwrite_copy. #if 0/#endif out all of the stuff related to ETextModels, because it doesn't make any sense to me, and everything appears to work without it. (Die bug #2059. Die! Die! Die!) * gui/component/select-names/e-select-names-model.c (e_select_names_model_overwrite_copy): Added. Copies the contents of one ESelectNamesModel onto another. * backend/ebook/e-destination.c (e_destination_copy): Made the argument const. svn path=/trunk/; revision=11165
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-model.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-model.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-model.c b/addressbook/gui/component/select-names/e-select-names-model.c
index f102421f0e..dc383994d3 100644
--- a/addressbook/gui/component/select-names/e-select-names-model.c
+++ b/addressbook/gui/component/select-names/e-select-names-model.c
@@ -592,6 +592,26 @@ e_select_names_model_delete_all (ESelectNamesModel *model)
}
void
+e_select_names_model_overwrite_copy (ESelectNamesModel *dest, ESelectNamesModel *src)
+{
+ gint i, len;
+
+ g_return_if_fail (dest && E_IS_SELECT_NAMES_MODEL (dest));
+ g_return_if_fail (src && E_IS_SELECT_NAMES_MODEL (src));
+
+ if (src == dest)
+ return;
+
+ e_select_names_model_delete_all (dest);
+ len = e_select_names_model_count (src);
+ for (i = 0; i < len; ++i) {
+ const EDestination *d = e_select_names_model_get_destination (src, i);
+ if (d)
+ e_select_names_model_append (dest, e_destination_copy (d));
+ }
+}
+
+void
e_select_names_model_name_pos (ESelectNamesModel *model, gint index, gint *pos, gint *length)
{
gint rp = 0, i, len = 0;