aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/menus/gal-view-collection.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-09-30 01:54:07 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-09-30 01:54:07 +0800
commite84acb9b0cb5efff7093bbbe7ac67b99ba189514 (patch)
tree0d3723995830bd9f2dfba8f90f089419e9fd2bbc /widgets/menus/gal-view-collection.c
parentc15acafc2ccc4151461e22b40bdd5ac1b4bd836e (diff)
downloadgsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar.gz
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar.bz2
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar.lz
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar.xz
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.tar.zst
gsoc2013-evolution-e84acb9b0cb5efff7093bbbe7ac67b99ba189514.zip
menus/gal-view-collection.c (load_single_dir) Use
2005-09-29 Tor Lillqvist <tml@novell.com> * menus/gal-view-collection.c (load_single_dir) * menus/gal-view-instance.c (load_current_view): Use g_win32_locale_filename_from_utf8() from GLib 2.8 instead of gnome_win32_locale_filename_from_utf8() which was temporarily in libgnome. svn path=/trunk/; revision=30420
Diffstat (limited to 'widgets/menus/gal-view-collection.c')
-rw-r--r--widgets/menus/gal-view-collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/menus/gal-view-collection.c b/widgets/menus/gal-view-collection.c
index 4e210ec3d2..f894e8cb59 100644
--- a/widgets/menus/gal-view-collection.c
+++ b/widgets/menus/gal-view-collection.c
@@ -398,7 +398,7 @@ load_single_dir (GalViewCollection *collection,
if (g_file_test (filename, G_FILE_TEST_IS_REGULAR)) {
#ifdef G_OS_WIN32
- gchar *locale_filename = gnome_win32_locale_filename_from_utf8 (filename);
+ gchar *locale_filename = g_win32_locale_filename_from_utf8 (filename);
if (locale_filename != NULL)
doc = xmlParseFile (locale_filename);
g_free (locale_filename);