Remove hard TABs and trailing spaces

no real changes
This commit is contained in:
Paul Cornett
2017-06-18 23:14:43 -07:00
parent a08812c499
commit dd3c62660b
8 changed files with 155 additions and 156 deletions

View File

@@ -153,7 +153,7 @@ bool wxGTKCairoDCImpl::DoStretchBlit(int xdest, int ydest, int dstWidth, int dst
// surface and use this copy in the drawing operations.
if ( cr == cr_src )
{
// Check if destination and source regions overlap.
// Check if destination and source regions overlap.
// If necessary, copy source surface to the temporary one.
if (wxRect(xdest, ydest, dstWidth, dstHeight)
.Intersects(wxRect(xsrc, ysrc, srcWidth, srcHeight)))
@@ -221,7 +221,7 @@ bool wxGTKCairoDCImpl::DoStretchBlit(int xdest, int ydest, int dstWidth, int dst
cairo_restore(cr);
if ( surfaceTmp )
{
cairo_surface_destroy(surfaceTmp);
cairo_surface_destroy(surfaceTmp);
}
m_logicalFunction = rop_save;
return true;