MacPDF: Override -[NSDocument isEntireFileLoaded]

We keep the NSData object around and stream for it, so that looks
like a good thing to do.
This commit is contained in:
Nico Weber 2023-09-29 20:12:09 -04:00 committed by Andreas Kling
parent e9b0ebe55a
commit 8a7d3cb3f4

View file

@ -136,6 +136,11 @@
return YES;
}
- (BOOL)isEntireFileLoaded
{
return NO;
}
- (IBAction)showGoToPageDialog:(id)sender
{
auto alert = [[NSAlert alloc] init];