s/.gnome/.gnome2/g
Mon May 13 17:05:22 2002 Jonathan Blandford <jrb@redhat.com> * gnome-settings-font.c (load_cursor): s/.gnome/.gnome2/g
This commit is contained in:
parent
fa7e54c907
commit
1ce84d9eda
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Mon May 13 17:05:22 2002 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
|
* gnome-settings-font.c (load_cursor): s/.gnome/.gnome2/g
|
||||||
|
|
||||||
2002-05-12 Anders Carlsson <andersca@gnu.org>
|
2002-05-12 Anders Carlsson <andersca@gnu.org>
|
||||||
|
|
||||||
* gnome-settings-xsettings.c:
|
* gnome-settings-xsettings.c:
|
||||||
|
|
|
@ -27,17 +27,17 @@ load_cursor (GConfClient *client)
|
||||||
gchar *mkfontdir_cmd;
|
gchar *mkfontdir_cmd;
|
||||||
|
|
||||||
/* setting up the dir */
|
/* setting up the dir */
|
||||||
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome", NULL);
|
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome2", NULL);
|
||||||
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
||||||
mkdir (font_dir_name, 0755);
|
mkdir (font_dir_name, 0755);
|
||||||
g_free (font_dir_name);
|
g_free (font_dir_name);
|
||||||
|
|
||||||
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome/share", NULL);
|
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome2/share", NULL);
|
||||||
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
||||||
mkdir (font_dir_name, 0755);
|
mkdir (font_dir_name, 0755);
|
||||||
g_free (font_dir_name);
|
g_free (font_dir_name);
|
||||||
|
|
||||||
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome/share/fonts", NULL);
|
font_dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome2/share/fonts", NULL);
|
||||||
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
if (! g_file_test (font_dir_name, G_FILE_TEST_EXISTS))
|
||||||
mkdir (font_dir_name, 0755);
|
mkdir (font_dir_name, 0755);
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ load_cursor (GConfClient *client)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome/share/cursor-fonts", NULL);
|
dir_name = g_build_path (G_DIR_SEPARATOR_S, g_get_home_dir (), ".gnome2/share/cursor-fonts", NULL);
|
||||||
if (! g_file_test (dir_name, G_FILE_TEST_EXISTS))
|
if (! g_file_test (dir_name, G_FILE_TEST_EXISTS))
|
||||||
mkdir (dir_name, 0755);
|
mkdir (dir_name, 0755);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue