summaryrefslogtreecommitdiff
path: root/backends/markup-tree.c
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2007-03-02 19:43:35 +0000
committerRay Strode <halfline@src.gnome.org>2007-03-02 19:43:35 +0000
commit3163512b9df75543ded4ce5cec0223a69a9ed191 (patch)
tree938fda3051f18ace2a37c82c5c4b90e80457e29f /backends/markup-tree.c
parentbfe6041b7ba2d8a0c7f4f864e2e2f4f0f9a53414 (diff)
downloadgconf-3163512b9df75543ded4ce5cec0223a69a9ed191.tar.gz
Patch from Paolo Borelli <pborelli@katamail.com>
2007-03-02 Ray Strode <rstrode@redhat.com> Patch from Paolo Borelli <pborelli@katamail.com> * backends/markup-tree.c: * backends/xml-dir.c: * doc/gconf/gconf-sections.txt: * doc/gconf/tmpl/gconf-internals.sgml: * gconf/gconf-backend.c: * gconf/gconf-internals.[ch]: * gconf/gconfd.c: use g_file_test instead of home brew gconf_file_test and gconf_file_exists functions svn path=/trunk/; revision=2371
Diffstat (limited to 'backends/markup-tree.c')
-rw-r--r--backends/markup-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/markup-tree.c b/backends/markup-tree.c
index 645d0d49..2e7434cd 100644
--- a/backends/markup-tree.c
+++ b/backends/markup-tree.c
@@ -495,7 +495,7 @@ load_subtree (MarkupDir *dir)
char *markup_file;
markup_file = markup_dir_build_file_path (dir, TRUE, NULL);
- if (!gconf_file_exists (markup_file))
+ if (!g_file_test (markup_file, G_FILE_TEST_EXISTS))
{
g_free (markup_file);
return FALSE;