diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-15 09:20:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-21 09:58:47 +0800 |
commit | ed1fa2f3804d189303cb0b0596d4f843d78c6eb3 (patch) | |
tree | 235d84075a29c0ce331ef50dccd58def9bff1f99 /mail/em-popup.c | |
parent | bf16cd18b646b018a005b9d1d5b72deaeede8d27 (diff) | |
download | gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar.gz gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar.bz2 gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar.lz gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar.xz gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.tar.zst gsoc2013-evolution-ed1fa2f3804d189303cb0b0596d4f843d78c6eb3.zip |
Bug 458491 – Remove useless "Call To..." popup menu option
Diffstat (limited to 'mail/em-popup.c')
-rw-r--r-- | mail/em-popup.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mail/em-popup.c b/mail/em-popup.c index 914b9840b5..4e15a2552d 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -257,10 +257,6 @@ em_popup_target_new_uri(EMPopup *emp, const char *uri) if (g_ascii_strncasecmp(uri, "http:", 5) == 0 || g_ascii_strncasecmp(uri, "https:", 6) == 0) mask &= ~EM_POPUP_URI_HTTP; - else if (g_ascii_strncasecmp(uri, "sip:", 3) == 0 - || g_ascii_strncasecmp(uri, "h323:", 5) == 0 - || g_ascii_strncasecmp(uri, "callto:", 7) == 0) - mask &= ~EM_POPUP_URI_CALLTO; if (g_ascii_strncasecmp(uri, "mailto:", 7) == 0) mask &= ~EM_POPUP_URI_MAILTO; @@ -407,7 +403,6 @@ static const EPopupHookTargetMask emph_uri_masks[] = { { "http", EM_POPUP_URI_HTTP }, { "mailto", EM_POPUP_URI_MAILTO }, { "notmailto", EM_POPUP_URI_NOT_MAILTO }, - { "callto", EM_POPUP_URI_CALLTO }, { NULL } }; |