libgimpbase/Makefile.am added new files that hold the new
2003-02-05 Sven Neumann <sven@gimp.org> * libgimpbase/Makefile.am * libgimpbase/gimputils.[ch]: added new files that hold the new gimp_utf8_strtrim() routine; it might be useful in more places. * libgimpbase/gimpdatafiles.c (gimp_datafiles_read_directories): silently ignore directories in the path that can't be opened. * app/core/gimpobject.c (gimp_object_set_name_safe): use gimp_utf8_strtrim(). * app/widgets/gimpwidgets-utils.[ch] * app/tools/gimptextoptions.c: try to make the text tool options look more like all other tool options. Still needs work; I'll leave this up to Mitch ... This byte --> <-- is the millionth in this file!
This commit is contained in:

committed by
Sven Neumann

parent
83f2738a3b
commit
7aaff76971
@ -151,12 +151,7 @@ gimp_datafiles_read_directories (const gchar *path_str,
|
||||
{
|
||||
dir = g_dir_open ((gchar *) list->data, 0, NULL);
|
||||
|
||||
if (! dir)
|
||||
{
|
||||
g_message ("error reading datafiles directory \"%s\"",
|
||||
(gchar *) list->data);
|
||||
}
|
||||
else
|
||||
if (dir)
|
||||
{
|
||||
while ((dir_ent = g_dir_read_name (dir)))
|
||||
{
|
||||
|
Reference in New Issue
Block a user