aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-05-03 02:13:05 +0800
committerChris Lahey <clahey@src.gnome.org>2002-05-03 02:13:05 +0800
commitc61f26fa581964ff51e1f335840a61078f80cf29 (patch)
treef61d282b1d09f1752080963d1906039085761410
parentd7d945d899478559fedf781ede531ce3344d61d0 (diff)
downloadgsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar.gz
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar.bz2
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar.lz
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar.xz
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.tar.zst
gsoc2013-evolution-c61f26fa581964ff51e1f335840a61078f80cf29.zip
Changed some of these to bind to the ContactListEditor verbs since they're
2002-05-01 Christopher James Lahey <clahey@ximian.com> * gui/contact-list-editor/e-contact-list-editor.c (verbs): Changed some of these to bind to the ContactListEditor verbs since they're marked as that in the ui file. Fixes Ximian bug #13034. svn path=/trunk/; revision=16665
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index a47c818fba..b0c427de31 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,9 @@
+2002-05-01 Christopher James Lahey <clahey@ximian.com>
+
+ * gui/contact-list-editor/e-contact-list-editor.c (verbs): Changed
+ some of these to bind to the ContactListEditor verbs since they're
+ marked as that in the ui file. Fixes Ximian bug #13034.
+
2002-04-30 JP Rosevear <jpr@ximian.com>
* gui/component/Makefile.am (EXTRA_DIST): fix
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
index a5676e1f19..c88af3005e 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -501,9 +501,9 @@ BonoboUIVerb verbs [] = {
BONOBO_UI_UNSAFE_VERB ("ContactListEditorSave", file_save_cb),
BONOBO_UI_UNSAFE_VERB ("ContactListEditorSaveClose", tb_save_and_close_cb),
BONOBO_UI_UNSAFE_VERB ("ContactListEditorDelete", delete_cb),
- BONOBO_UI_UNSAFE_VERB ("ContactEditorSaveAs", file_save_as_cb),
- BONOBO_UI_UNSAFE_VERB ("ContactEditorSendAs", file_send_as_cb),
- BONOBO_UI_UNSAFE_VERB ("ContactEditorSendTo", file_send_to_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactListEditorSaveAs", file_save_as_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactListEditorSendAs", file_send_as_cb),
+ BONOBO_UI_UNSAFE_VERB ("ContactListEditorSendTo", file_send_to_cb),
BONOBO_UI_UNSAFE_VERB ("ContactListEditorClose", file_close_cb),
BONOBO_UI_VERB_END
};