forked from AuroraMiddleware/gtk
Fix problem where rc_file->directory wasn't always getting set. (#120549,
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com> * gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix problem where rc_file->directory wasn't always getting set. (#120549, Luis Villa)
This commit is contained in:
parent
a8ea1bc420
commit
f977168c41
@ -1,3 +1,9 @@
|
||||
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix
|
||||
problem where rc_file->directory wasn't always getting
|
||||
set. (#120549, Luis Villa)
|
||||
|
||||
2003-08-22 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added "ne" to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix
|
||||
problem where rc_file->directory wasn't always getting
|
||||
set. (#120549, Luis Villa)
|
||||
|
||||
2003-08-22 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added "ne" to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix
|
||||
problem where rc_file->directory wasn't always getting
|
||||
set. (#120549, Luis Villa)
|
||||
|
||||
2003-08-22 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added "ne" to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix
|
||||
problem where rc_file->directory wasn't always getting
|
||||
set. (#120549, Luis Villa)
|
||||
|
||||
2003-08-22 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added "ne" to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sat Aug 23 21:40:18 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_context_parse_one_file): Fix
|
||||
problem where rc_file->directory wasn't always getting
|
||||
set. (#120549, Luis Villa)
|
||||
|
||||
2003-08-22 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added "ne" to ALL_LINGUAS.
|
||||
|
@ -779,9 +779,10 @@ gtk_rc_context_parse_one_file (GtkRcContext *context,
|
||||
|
||||
cwd = g_get_current_dir ();
|
||||
rc_file->canonical_name = g_build_filename (cwd, rc_file->name, NULL);
|
||||
rc_file->directory = g_path_get_dirname (rc_file->canonical_name);
|
||||
g_free (cwd);
|
||||
}
|
||||
|
||||
rc_file->directory = g_path_get_dirname (rc_file->canonical_name);
|
||||
}
|
||||
|
||||
/* If the file is already being parsed (recursion), do nothing
|
||||
|
Loading…
Reference in New Issue
Block a user