Removed all instances of include in new files.

This commit is contained in:
Gregory John Casamento 2019-12-04 12:02:49 -05:00
parent f5026dfa97
commit 7e81e90e02
8 changed files with 15 additions and 36 deletions

View file

@ -30,10 +30,6 @@
#import "AppKit/NSPDFImageRep.h"
#import <GNUstepGUI/GSImageMagickImageRep.h>
@interface NSBitmapImageRep (PrivateMethods)
- (void) _premultiply;
@end
@implementation NSPDFImageRep
+ (BOOL) canInitWithData: (NSData *)imageData
@ -127,11 +123,7 @@
- (BOOL) draw
{
NSBitmapImageRep *rep = [_pageReps objectAtIndex: _currentPage - 1];
[rep _premultiply];
[rep draw];
return YES;
return [rep draw];
}
@end