1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:07:45 +00:00

MacPDF: Rename LagomPDFDocument to MacPDFDocument

This commit is contained in:
Nico Weber 2023-09-30 18:58:24 -04:00 committed by Andrew Kaster
parent f99771d46f
commit 76f0a09b5e
6 changed files with 10 additions and 10 deletions

View file

@ -0,0 +1,27 @@
/*
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
// Several AK types conflict with MacOS types.
#define FixedPoint FixedPointMacOS
#import <Cocoa/Cocoa.h>
#undef FixedPoint
#import "MacPDFView.h"
NS_ASSUME_NONNULL_BEGIN
@interface MacPDFDocument : NSDocument <MacPDFViewDelegate>
{
IBOutlet MacPDFView* _pdfView;
}
- (IBAction)showGoToPageDialog:(id)sender;
@end
NS_ASSUME_NONNULL_END