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

@ -467,7 +467,7 @@ sort_boundary (BoundSeg *segs,
}
if (x != startx || y != starty)
g_warning ("Unconnected boundary group!");
g_message ("sort_boundary(): Unconnected boundary group!");
/* Mark the end of a group */
*num_groups = *num_groups + 1;

View File

@ -621,7 +621,7 @@ static void
color_balance_preview (ColorBalanceDialog *cbd)
{
if (!cbd->image_map)
g_warning ("No image map");
g_message ("color_balance_preview(): No image map");
active_tool->preserve = TRUE;
image_map_apply (cbd->image_map, color_balance, (void *) cbd);
active_tool->preserve = FALSE;

View File

@ -817,7 +817,7 @@ static void
curves_preview (CurvesDialog *cd)
{
if (!cd->image_map)
g_warning ("No image map");
g_message ("curves_preview(): No image map");
active_tool->preserve = TRUE; /* Going to dirty the display... */

View File

@ -734,7 +734,7 @@ static void
hue_saturation_preview (HueSaturationDialog *hsd)
{
if (!hsd->image_map)
g_warning ("No image map");
g_message ("hue_saturation_preview(): No image map");
active_tool->preserve = TRUE;
image_map_apply (hsd->image_map, hue_saturation, (void *) hsd);
active_tool->preserve = FALSE;

View File

@ -488,7 +488,7 @@ static void
threshold_preview (ThresholdDialog *td)
{
if (!td->image_map)
g_warning ("No image map");
g_message ("threshold_preview(): No image map");
image_map_apply (td->image_map, threshold, (void *) td);
}

View File

@ -252,7 +252,7 @@ tile_swap_command (Tile *tile,
swap_file = g_hash_table_lookup (swap_files, &tile->swap_num);
if (!swap_file)
{
g_warning ("could not find swap file for tile");
g_message ("could not find swap file for tile");
return;
}
@ -287,7 +287,7 @@ tile_swap_open (SwapFile *swap_file)
swap_file->fd = open (swap_file->filename, O_CREAT|O_RDWR, S_IRUSR|S_IWUSR);
if (swap_file->fd == -1)
{
g_warning ("unable to open swap file...BAD THINGS WILL HAPPEN SOON");
g_message ("unable to open swap file...BAD THINGS WILL HAPPEN SOON");
return;
}
@ -326,7 +326,7 @@ tile_swap_default (int fd,
tile_swap_default_delete (def_swap_file, fd, tile);
break;
case SWAP_COMPRESS:
g_warning ("tile_swap_default: SWAP_COMPRESS: UNFINISHED");
g_message ("tile_swap_default: SWAP_COMPRESS: UNFINISHED");
break;
}
@ -352,7 +352,7 @@ tile_swap_default_in (DefSwapFile *def_swap_file,
offset = lseek (fd, tile->swap_offset, SEEK_SET);
if (offset == -1)
{
g_warning ("unable to seek to tile location on disk: %d", err);
g_message ("unable to seek to tile location on disk: %d", err);
return;
}
}
@ -369,7 +369,7 @@ tile_swap_default_in (DefSwapFile *def_swap_file,
if (err <= 0)
{
g_warning ("unable to read tile data from disk: %d ( %d ) bytes read", err, nleft);
g_message ("unable to read tile data from disk: %d ( %d ) bytes read", err, nleft);
return;
}
@ -407,7 +407,7 @@ tile_swap_default_out (DefSwapFile *def_swap_file,
offset = lseek (fd, tile->swap_offset, SEEK_SET);
if (offset == -1)
{
g_warning ("unable to seek to tile location on disk: %d", errno);
g_message ("unable to seek to tile location on disk: %d", errno);
return;
}
}
@ -418,7 +418,7 @@ tile_swap_default_out (DefSwapFile *def_swap_file,
err = write (fd, tile->data + rbytes - nleft, nleft);
if (err <= 0)
{
g_warning ("unable to write tile data to disk: %d ( %d ) bytes written", err, nleft);
g_message ("unable to write tile data to disk: %d ( %d ) bytes written", err, nleft);
return;
}