Revision: 25374
          http://sourceforge.net/p/bibdesk/svn/25374
Author:   hofman
Date:     2021-01-12 17:27:16 +0000 (Tue, 12 Jan 2021)
Log Message:
-----------
Add underscores to private function name

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVIcon_Private.m

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVIcon_Private.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVIcon_Private.m  2021-01-12 
17:25:30 UTC (rev 25373)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVIcon_Private.m  2021-01-12 
17:27:16 UTC (rev 25374)
@@ -214,7 +214,7 @@
 }
 
 // used to constrain thumbnail size for huge pages
-static inline bool FVIconLimitSize(NSSize *size, CGFloat maxDimension)
+static inline bool __FVIconLimitSize(NSSize *size, CGFloat maxDimension)
 {
     CGFloat dimension = fmax(size->width, size->height);
     if (dimension <= maxDimension)
@@ -228,12 +228,12 @@
 // used to constrain thumbnail size for huge pages
 bool FVIconLimitThumbnailSize(NSSize *size)
 {
-    return FVIconLimitSize(size, FVMaxThumbnailDimension * FVDefaultScale);
+    return __FVIconLimitSize(size, FVMaxThumbnailDimension * FVDefaultScale);
 }
 
 bool FVIconLimitFullImageSize(NSSize *size)
 {
-    return FVIconLimitSize(size, FVMaxImageDimension * FVDefaultScale);
+    return __FVIconLimitSize(size, FVMaxImageDimension * FVDefaultScale);
 }
 
 CGImageRef FVCreateResampledThumbnail(CGImageRef image)

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



_______________________________________________
Bibdesk-commit mailing list
Bibdesk-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to