< prev index next >

src/java.desktop/macosx/native/libawt_lwawt/awt/CTextPipe.m

Print this page
rev 52923 : 8226346: Build better binary builders
Reviewed-by: andrew

@@ -34,15 +34,10 @@
 
 #import "CoreTextSupport.h"
 #import "QuartzSurfaceData.h"
 #include "AWTStrike.h"
 
-/* Use THIS_FILE when it is available. */
-#ifndef THIS_FILE
-    #define THIS_FILE __FILE__
-#endif
-
 static const CGAffineTransform sInverseTX = { 1, 0, 0, -1, 0, 0 };
 
 
 #pragma mark --- CoreText Support ---
 

@@ -529,11 +524,11 @@
         CGSize *advances = (CGSize *)malloc(sizeof(CGSize) * length);
 
         if (glyphs == NULL || uniChars == NULL || advances == NULL)
         {
             (*env)->DeleteLocalRef(env, glyphsArray);
-            [NSException raise:NSMallocException format:@"%s-%s:%d", THIS_FILE, __FUNCTION__, __LINE__];
+            [NSException raise:NSMallocException format:@"%s-%s:%d", __FILE__, __FUNCTION__, __LINE__];
             if (glyphs)
             {
                 free(glyphs);
             }
             if (uniChars)
< prev index next >