2007-05-21 Eduardo Lima <eduardo.lima@indt.org.br>
* libdocument/ev-file-helpers.c: (ensure_dir_exists):
Using g_mkdir_with_parents() instead of g_mkdir() to really ensure the
directory exists.
svn path=/trunk/; revision=2471
+2007-05-21 Eduardo Lima <eduardo.lima@indt.org.br>
+
+ * libdocument/ev-file-helpers.c: (ensure_dir_exists):
+
+ Using g_mkdir_with_parents() instead of g_mkdir() to really ensure the
+ directory exists.
+
2007-05-20 Wouter Bolsterlee <wbolster@svn.gnome.org>
* shell/ev-sidebar.c: (ev_sidebar_add_page):
if (g_file_test (dir, G_FILE_TEST_IS_DIR))
return TRUE;
- if (g_mkdir (dir, 488) == 0)
+ if (g_mkdir_with_parents (dir, 488) == 0)
return TRUE;
if (errno == EEXIST)