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

@ -29,10 +29,6 @@
#import <Foundation/NSArray.h>
#import <GNUstepGUI/GSImageMagickImageRep.h>
@interface NSBitmapImageRep (PrivateMethods)
- (void) _premultiply;
@end
@implementation NSPICTImageRep
+ (NSArray *) imageUnfilteredFileTypes
@ -96,9 +92,7 @@
// Override to draw the specified page...
- (BOOL) draw
{
[_pageRep _premultiply];
[_pageRep draw];
return YES;
return [_pageRep draw];
}
@end