aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-09-18 01:21:44 +0800
committerChristian Persch <chpe@src.gnome.org>2003-09-18 01:21:44 +0800
commit55921eaa6c0396d34cbffbf312cc9337495e3e7f (patch)
tree352ec9d03f1a36f7439c4b7f6500a4c64f9579f9 /embed
parenta37c96725038bee5c8ba1817740908fdfa1a3d8e (diff)
downloadgsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar.gz
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar.bz2
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar.lz
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar.xz
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.tar.zst
gsoc2013-epiphany-55921eaa6c0396d34cbffbf312cc9337495e3e7f.zip
Re-revert, use new gnome vfs show_url api.
2003-09-17 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/ExternalProtocolService.cpp: Re-revert, use new gnome vfs show_url api. * configure.in: Depend on appropriate gnome-vfs version.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/ExternalProtocolService.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/embed/mozilla/ExternalProtocolService.cpp b/embed/mozilla/ExternalProtocolService.cpp
index be5dfdee2..e16ac0e63 100644
--- a/embed/mozilla/ExternalProtocolService.cpp
+++ b/embed/mozilla/ExternalProtocolService.cpp
@@ -23,7 +23,7 @@
#include <gtk/gtk.h>
#include <libgnome/gnome-exec.h>
#include <libgnome/gnome-i18n.h>
-#include <libgnome/gnome-url.h>
+#include <libgnomevfs/gnome-vfs-utils.h>
#include <nsString.h>
#include <nsXPIDLString.h>
@@ -104,7 +104,7 @@ NS_IMETHODIMP GExternalProtocolService::LoadUrl(nsIURI *aURL)
char *result = eel_gconf_get_string(key.get());
if (result)
{
- gnome_url_show(cSpec.get(), NULL);
+ gnome_vfs_url_show(cSpec.get());
g_free (result);
return NS_OK;
}
@@ -145,7 +145,7 @@ NS_IMETHODIMP GExternalProtocolService::LoadUrl(nsIURI *aURL)
if (ret == 0)
{
- gnome_url_show(cSpec.get(), NULL);
+ gnome_vfs_url_show(cSpec.get());
return NS_OK;
}
else