示例#1
0
        private void OnContactsRemoved(object o, Evolution.ContactsRemovedArgs args)
        {
            if (ignore_first_batch)
            {
                return;
            }

            // FIXME: This is a temporary workaround for the
            // fact that the evolution bindings return a
            // GLib.List with an object type, but there are
            // really strings in there.

            GLib.List id_list = new GLib.List(args.Ids.Handle,
                                              typeof(string));

            foreach (string id in id_list)
            {
                RemoveContact(id);
            }
        }
示例#2
0
文件: evolution.cs 项目: horga83/gfax
 private void OnContactsRemoved(object o, Evolution.ContactsRemovedArgs args)
 {
 }