more g_message changes

* more g_message changes

* CEL plugin update

* INSTALL: info on why plugins don't get built

-Yosh
This commit is contained in:
Manish Singh
1998-05-30 07:32:37 +00:00
parent 9bb6ea8994
commit 6ddbb705a3
110 changed files with 1179 additions and 1094 deletions

View File

@ -156,7 +156,7 @@ gimp_tile_get (GTile *tile)
if (msg.type != GP_TILE_DATA)
{
g_warning ("unexpected message: %d\n", msg.type);
g_message ("unexpected message: %d\n", msg.type);
gimp_quit ();
}
@ -168,7 +168,7 @@ gimp_tile_get (GTile *tile)
(tile_data->height != tile->eheight) ||
(tile_data->bpp != tile->bpp))
{
g_warning ("received tile info did not match computed tile info\n");
g_message ("received tile info did not match computed tile info\n");
gimp_quit ();
}
@ -212,7 +212,7 @@ gimp_tile_put (GTile *tile)
if (msg.type != GP_TILE_DATA)
{
g_warning ("unexpected message: %d\n", msg.type);
g_message ("unexpected message: %d\n", msg.type);
gimp_quit ();
}
@ -240,7 +240,7 @@ gimp_tile_put (GTile *tile)
if (msg.type != GP_TILE_ACK)
{
g_warning ("unexpected message: %d\n", msg.type);
g_message ("unexpected message: %d\n", msg.type);
gimp_quit ();
}