diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-26 03:01:49 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-26 03:01:49 +0800 |
commit | 489e7a9100441a017324f61ca6d41ca72fed15a7 (patch) | |
tree | 4d67202a3d55a834fc0158ecee3540f5f2b37fd7 /graphics | |
parent | fbaeffc05ecc7e84e91ef1bde71df9ba732f1228 (diff) | |
download | marcuscom-ports-489e7a9100441a017324f61ca6d41ca72fed15a7.tar.gz marcuscom-ports-489e7a9100441a017324f61ca6d41ca72fed15a7.tar.zst marcuscom-ports-489e7a9100441a017324f61ca6d41ca72fed15a7.zip |
- Fix build on 4.x
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4629 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/eog/files/patch-libeog_eog-image-list.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/graphics/eog/files/patch-libeog_eog-image-list.c b/graphics/eog/files/patch-libeog_eog-image-list.c new file mode 100644 index 000000000..609cd0469 --- /dev/null +++ b/graphics/eog/files/patch-libeog_eog-image-list.c @@ -0,0 +1,17 @@ +--- libeog/eog-image-list.c.orig Thu Aug 25 14:57:02 2005 ++++ libeog/eog-image-list.c Thu Aug 25 14:57:46 2005 +@@ -450,12 +450,13 @@ + case GNOME_VFS_MONITOR_EVENT_CREATED: + + if (list && list->priv) { ++ gchar *str; + node = list->priv->store; + + while (node != NULL && !found) { + + uri = eog_image_get_uri(node->data); +- gchar *str = gnome_vfs_uri_to_string ++ str = gnome_vfs_uri_to_string + (uri, GNOME_VFS_URI_HIDE_NONE); + found = (strcmp (str, info_uri)==0)?TRUE:FALSE; + g_free (str); |