Revision: 28729
          http://sourceforge.net/p/bibdesk/svn/28729
Author:   hofman
Date:     2024-02-12 00:07:17 +0000 (Mon, 12 Feb 2024)
Log Message:
-----------
rename variable

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVCGImageUtilities.mm

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVCGImageUtilities.mm
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVCGImageUtilities.mm     
2024-02-12 00:04:07 UTC (rev 28728)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVCGImageUtilities.mm     
2024-02-12 00:07:17 UTC (rev 28729)
@@ -838,12 +838,12 @@
     }
         
     FVImageBuffer *imageBuffer;
-    size_t r = FVPaddedRowBytesForWidth(1, maxWidth);
+    const size_t planarRowBytes = FVPaddedRowBytesForWidth(1, maxWidth);
     NSUInteger i;
     
     FVImageBuffer * planarA[4];
     for (i = 0; i < 4 && kvImageNoError == ret; i++) {
-        imageBuffer = [[FVImageBuffer alloc] initWithWidth:maxWidth 
height:maxHeight rowBytes:r];
+        imageBuffer = [[FVImageBuffer alloc] initWithWidth:maxWidth 
height:maxHeight rowBytes:planarRowBytes];
         if (imageBuffer) {
             planarA[i] = imageBuffer;
         }
@@ -854,7 +854,7 @@
     
     FVImageBuffer * planarB[4];
     for (i = 0; i < 4 && kvImageNoError == ret; i++) {
-        imageBuffer = [[FVImageBuffer alloc] initWithWidth:maxWidth 
height:maxHeight rowBytes:r];
+        imageBuffer = [[FVImageBuffer alloc] initWithWidth:maxWidth 
height:maxHeight rowBytes:planarRowBytes];
         if (imageBuffer) {
             planarB[i] = imageBuffer;
         }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to