aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-attachment-bar.c10
-rw-r--r--widgets/misc/e-url-entry.c8
3 files changed, 14 insertions, 10 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 9028c17408..e8c1a5023d 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-11 Matthew Barnes <mbarnes@redhat.com>
+
+ * e-attachment-bar.c (eab_icon_clicked_cb):
+ * e-url-entry.c (button_clicked_cb):
+ Call e_show_uri() instead of gnome_url_show().
+
2009-01-10 Matthew Barnes <mbarnes@redhat.com>
* test-dropdown-button.c:
diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c
index bdb6852e13..2da9d3541c 100644
--- a/widgets/misc/e-attachment-bar.c
+++ b/widgets/misc/e-attachment-bar.c
@@ -993,7 +993,6 @@ static gboolean
eab_icon_clicked_cb (EAttachmentBar *bar, GdkEvent *event, gpointer *dummy)
{
EAttachment *attachment;
- GError *error = NULL;
gboolean ret = FALSE;
CamelURL *url;
char *path;
@@ -1015,13 +1014,8 @@ eab_icon_clicked_cb (EAttachmentBar *bar, GdkEvent *event, gpointer *dummy)
g_free (path);
}
- /* launch the url now */
- gnome_url_show (attachment->store_uri, &error);
- if (error) {
- g_message ("DEBUG: Launch failed: %s\n", error->message);
- g_error_free (error);
- error = NULL;
- }
+ /* FIXME Pass a parent window. */
+ e_show_uri (NULL, attachment->store_uri);
ret = TRUE;
}
diff --git a/widgets/misc/e-url-entry.c b/widgets/misc/e-url-entry.c
index 26d081fc85..32490f6590 100644
--- a/widgets/misc/e-url-entry.c
+++ b/widgets/misc/e-url-entry.c
@@ -25,9 +25,9 @@
#endif
#include <gtk/gtk.h>
-#include <libgnome/gnome-url.h>
#include <glib/gi18n.h>
#include "e-url-entry.h"
+#include "e-util/e-util.h"
struct _EUrlEntryPrivate {
GtkWidget *entry;
@@ -170,11 +170,15 @@ button_clicked_cb (GtkWidget *widget, gpointer data)
{
EUrlEntry *url_entry;
EUrlEntryPrivate *priv;
+ const gchar *uri;
url_entry = E_URL_ENTRY (data);
priv = url_entry->priv;
- gnome_url_show (gtk_entry_get_text (GTK_ENTRY (priv->entry)), NULL);
+ uri = gtk_entry_get_text (GTK_ENTRY (priv->entry));
+
+ /* FIXME Pass a parent window. */
+ e_show_uri (NULL, uri);
}
static void