(svn r17701) -Codechange: don't start line with a space if it's not inside comment

This commit is contained in:
smatz
2009-10-04 20:51:50 +00:00
parent 2adc2f4324
commit fa937901cb
12 changed files with 25 additions and 24 deletions

View File

@@ -351,7 +351,7 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
/* Calculate total area we are blitting */
for (n = 0; n < dirtyRectCount; n++) {
blitArea += dirtyRects[n].size.width * dirtyRects[n].size.height;
}
}
/*
* This might be completely stupid, but in my extremely subjective opinion it feels faster
@@ -396,8 +396,8 @@ static CGColorSpaceRef QZ_GetCorrectColorSpace()
clippedImage = CGImageCreateWithImageInRect(fullImage, clipRect);
CGContextDrawImage(viewContext, blitRect, clippedImage);
CGImageRelease(clippedImage);
}
}
}
}
CGImageRelease(fullImage);
}