whitespace fix

svn path=/trunk/; revision=26438
This commit is contained in:
Sven Neumann 2008-08-08 10:57:38 +00:00
parent c10f60e4c8
commit 576ea3cda1
2 changed files with 4 additions and 4 deletions

View File

@ -305,17 +305,17 @@ tile_manager_allocate_tiles (TileManager *tm)
for (j = 0; j < ncols; j++, k++)
{
Tile *new = tile_new (tm->bpp);
tile_attach (new, tm, k);
if (j == (ncols - 1))
new->ewidth = right_tile;
if (i == (nrows - 1))
new->eheight = bottom_tile;
new->size = new->ewidth * new->eheight * new->bpp;
tiles[k] = new;
}
}

View File

@ -315,7 +315,7 @@ tile_pyramid_get_bpp (const TilePyramid *pyramid)
/**
* tile_pyramid_get_memsize:
* @pyramid: a #TilePyramid
* @pyramid: a #TilePyramid
*
* Return value: size of memory allocated for the @pyramid
**/