aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer.c11
2 files changed, 6 insertions, 10 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index cfafbca1bd..dab9cff1a7 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-11 Matthew Barnes <mbarnes@redhat.com>
+
+ * e-msg-composer.c (msg_composer_link_clicked):
+ Call e_show_uri() instead of gnome_url_show().
+
2009-01-09 Takao Fujiwara <takao.fujiwara@sun.com>
Reviewed by Matthew Barnes <mbarnes@redhat.com>
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index b334e68e34..d13d799ab2 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -56,8 +56,6 @@
#include <gconf/gconf.h>
#include <gconf/gconf-client.h>
-#include <libgnome/gnome-url.h>
-
#include <glade/glade.h>
#include "e-util/e-dialog-utils.h"
@@ -2628,8 +2626,6 @@ static void
msg_composer_link_clicked (GtkhtmlEditor *editor,
const gchar *uri)
{
- GError *error = NULL;
-
if (uri == NULL || *uri == '\0')
return;
@@ -2642,12 +2638,7 @@ msg_composer_link_clicked (GtkhtmlEditor *editor,
if (g_ascii_strncasecmp (uri, "cid:", 4) == 0)
return;
- gnome_url_show (uri, &error);
-
- if (error) {
- g_warning ("%s", error->message);
- g_error_free (error);
- }
+ e_show_uri (GTK_WINDOW (editor), uri);
}
static void