diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-11-18 01:06:40 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-11-18 02:59:25 +0800 |
commit | ef498ab03510076d9b4a80f52164032a413ec867 (patch) | |
tree | af54307fc3d76074bd88ada151db91814e2cf41d /widgets/misc/e-web-view.c | |
parent | c745f731823dec03232e656352fcdba29eb57b96 (diff) | |
download | gsoc2013-evolution-ef498ab03510076d9b4a80f52164032a413ec867.tar.gz gsoc2013-evolution-ef498ab03510076d9b4a80f52164032a413ec867.tar.zst gsoc2013-evolution-ef498ab03510076d9b4a80f52164032a413ec867.zip |
Remove some redundancy from EABContactDisplay.
Diffstat (limited to 'widgets/misc/e-web-view.c')
-rw-r--r-- | widgets/misc/e-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-web-view.c b/widgets/misc/e-web-view.c index 5d56735e5e..a71bf8299a 100644 --- a/widgets/misc/e-web-view.c +++ b/widgets/misc/e-web-view.c @@ -272,7 +272,6 @@ action_mailto_copy_cb (GtkAction *action, const gchar *uri; gchar *text; - clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD); uri = e_web_view_get_selected_uri (web_view); g_return_if_fail (uri != NULL); @@ -289,6 +288,7 @@ action_mailto_copy_cb (GtkAction *action, camel_object_unref (inet_addr); camel_url_free (curl); + clipboard = gtk_clipboard_get (GDK_SELECTION_CLIPBOARD); gtk_clipboard_set_text (clipboard, text, -1); gtk_clipboard_store (clipboard); |