aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-editor.c
diff options
context:
space:
mode:
authorRoss Burton <rburton@src.gnome.org>2004-01-09 00:26:42 +0800
committerRoss Burton <rburton@src.gnome.org>2004-01-09 00:26:42 +0800
commit4f9ed89172807bf2593c2fea6d88d1bb5b0c8967 (patch)
tree71883d991ede0ee12b842afb622d8f211a91ea94 /addressbook/gui/contact-editor/e-contact-editor.c
parent518654ece865fa946a364fb2af306dbfcee90cdb (diff)
downloadgsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar.gz
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar.bz2
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar.lz
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar.xz
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.tar.zst
gsoc2013-evolution-4f9ed89172807bf2593c2fea6d88d1bb5b0c8967.zip
Add the video conferencing field
svn path=/trunk/; revision=24117
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor.c')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 8e58f114e1..13a1f39d51 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -830,6 +830,7 @@ set_entry_changed_signals(EContactEditor *editor)
set_urlentry_changed_signal_field (editor, "entry-blog");
set_urlentry_changed_signal_field (editor, "entry-caluri");
set_urlentry_changed_signal_field (editor, "entry-fburl");
+ set_urlentry_changed_signal_field (editor, "entry-videourl");
set_entry_changed_signal_field(editor, "entry-categories");
set_entry_changed_signal_field(editor, "entry-jobtitle");
@@ -2356,6 +2357,7 @@ static struct {
{ "entry-categories", E_CONTACT_CATEGORIES },
{ "entry-caluri", E_CONTACT_CALENDAR_URI },
{ "entry-fburl", E_CONTACT_FREEBUSY_URL },
+ { "entry-videourl", E_CONTACT_VIDEO_URL },
};
static void
@@ -2449,7 +2451,10 @@ static struct {
{ "entry-caluri", E_CONTACT_CALENDAR_URI, TRUE },
{ "label-fburl", E_CONTACT_FREEBUSY_URL },
- { "entry-fburl", E_CONTACT_FREEBUSY_URL, TRUE }
+ { "entry-fburl", E_CONTACT_FREEBUSY_URL, TRUE },
+
+ { "label-videourl", E_CONTACT_VIDEO_URL },
+ { "entry-videourl", E_CONTACT_VIDEO_URL, TRUE }
};
static int num_widget_field_mappings = sizeof(widget_field_mappings) / sizeof (widget_field_mappings[0]);