mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 23:42:16 +00:00
* Source/opal/OpalGState.m: move variable declaration outside of for loop
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@37149 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ae5fa7602b
commit
2c9d2ee692
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-09-23 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/opal/OpalGState.m: move variable declaration outside
|
||||
of for loop
|
||||
|
||||
2013-09-23 Ivan Vucica <ivan@vucica.net>
|
||||
|
||||
* Source/opal/OpalGState.m:
|
||||
|
|
|
@ -172,7 +172,8 @@ NSDebugLLog(@"OpalGState", @" : samplesperpixel = %d", samples
|
|||
OPContextSetIdentityCTM([_opalSurface x11CGContext]);
|
||||
CGContextConcatCTM([_opalSurface x11CGContext], CGContextGetCTM([_opalSurface backingCGContext]));
|
||||
|
||||
for (int i = 0; i < 1; i++) // not drawing into x11cgctx after all.
|
||||
int i;
|
||||
for (i = 0; i < 1; i++) // not drawing into x11cgctx after all.
|
||||
{
|
||||
CGContextRef ctx = destContexts[i];
|
||||
|
||||
|
|
Loading…
Reference in a new issue