gimp_message. libgimp also overrides g_message for all plugins. Converted

* redid the error message handling. g_message now calls message_box or prints
to console depending on whether the no_interface is set or not. gimp-message
is also exported to the PDB as a wrapper to g_message, and libgimp has a new
API: gimp_message. libgimp also overrides g_message for all plugins. Converted
lots of messages in app/* to g_message. Made script-fu a little friendlier.

* updated the regex code from grep 2.2

* said goodbye to the old script-fu logo in script-fu.h

-Yosh
This commit is contained in:
Manish Singh
1998-05-28 09:03:57 +00:00
parent 36e02fc79d
commit 1d95a05af0
143 changed files with 1239 additions and 3039 deletions

View File

@ -97,7 +97,7 @@ datafiles_read_directories (char *path_str,
dir = opendir(path);
if (!dir)
warning("error reading datafiles directory \"%s\"", path);
g_message ("error reading datafiles directory \"%s\"", path);
else
{
while ((dir_ent = readdir(dir)))