summaryrefslogtreecommitdiff
path: root/cut-n-paste-code/libegg/egg-recent-item.c
diff options
context:
space:
mode:
Diffstat (limited to 'cut-n-paste-code/libegg/egg-recent-item.c')
-rw-r--r--cut-n-paste-code/libegg/egg-recent-item.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cut-n-paste-code/libegg/egg-recent-item.c b/cut-n-paste-code/libegg/egg-recent-item.c
index 4b42aca75..ee4a248ad 100644
--- a/cut-n-paste-code/libegg/egg-recent-item.c
+++ b/cut-n-paste-code/libegg/egg-recent-item.c
@@ -25,7 +25,6 @@
#include <libgnomevfs/gnome-vfs.h>
#include <libgnomevfs/gnome-vfs-mime-utils.h>
#include "egg-recent-item.h"
-#include "egg-recent-vfs-utils.h"
@@ -187,7 +186,7 @@ egg_recent_item_set_uri (EggRecentItem *item, const gchar *uri)
/* if G_BROKEN_FILENAMES is not set, this should succede */
if (g_utf8_validate (uri, -1, NULL)) {
- item->uri = egg_recent_vfs_make_uri_from_input (uri);
+ item->uri = gnome_vfs_make_uri_from_input (uri);
} else {
utf8_uri = g_filename_to_utf8 (uri, -1, NULL, NULL, NULL);
@@ -197,7 +196,7 @@ egg_recent_item_set_uri (EggRecentItem *item, const gchar *uri)
}
if (g_utf8_validate (utf8_uri, -1, NULL)) {
- item->uri = egg_recent_vfs_make_uri_from_input (utf8_uri);
+ item->uri = gnome_vfs_make_uri_from_input (utf8_uri);
} else {
g_free (utf8_uri);
return FALSE;
@@ -233,7 +232,7 @@ egg_recent_item_get_uri_utf8 (const EggRecentItem *item)
gchar *
egg_recent_item_get_uri_for_display (const EggRecentItem *item)
{
- return egg_recent_vfs_format_uri_for_display (item->uri);
+ return gnome_vfs_format_uri_for_display (item->uri);
}
void