diff options
author | Wouter Bolsterlee <wbolster@src.gnome.org> | 2008-03-05 04:21:38 +0800 |
---|---|---|
committer | Wouter Bolsterlee <wbolster@src.gnome.org> | 2008-03-05 04:21:38 +0800 |
commit | c1f29e3b6ceabc13c8b29dc06b412d61edce7790 (patch) | |
tree | 55a242f29955b4aec3a3fa7b7f87e5996dcb1b93 | |
parent | fc08c288043103ec01a409ed20269807290ba0f1 (diff) | |
download | gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar.gz gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar.bz2 gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar.lz gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar.xz gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.tar.zst gsoc2013-epiphany-c1f29e3b6ceabc13c8b29dc06b412d61edce7790.zip |
Fix build with latest glib.
svn path=/trunk/; revision=8030
-rw-r--r-- | doc/reference/tmpl/EphySingle.sgml | 2 | ||||
-rw-r--r-- | lib/ephy-file-helpers.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/reference/tmpl/EphySingle.sgml b/doc/reference/tmpl/EphySingle.sgml index c0bacd02a..34ed07e52 100644 --- a/doc/reference/tmpl/EphySingle.sgml +++ b/doc/reference/tmpl/EphySingle.sgml @@ -22,7 +22,7 @@ EphySingle </para> -@aOwningWidget: +@aHistory: @Returns: diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 79885bd59..a2853fb7d 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -713,7 +713,7 @@ ephy_file_browse_to (GFile *file, desktop = g_file_new_for_path (desktop_dir); /* Don't do anything if destination is the desktop */ - if (g_file_contains_file (desktop, file)) + if (g_file_has_prefix (file, desktop)) { ret = FALSE; } |