Skip to content

Commit 4f9a597

Browse files
committed
Fixing a typo from a bad merge.
* UIProcess/API/mac/WKView.mm: (-[WKView canChangeFrameLayout:]): Canonical link: https://commits.webkit.org/66202@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@75960 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 67ed3a2 commit 4f9a597

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Source/WebKit2/ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2011-01-17 Alexey Proskuryakov <ap@apple.com>
2+
3+
Fixing a typo from a bad merge.
4+
5+
* UIProcess/API/mac/WKView.mm: (-[WKView canChangeFrameLayout:]):
6+
17
2011-01-17 Alexey Proskuryakov <ap@apple.com>
28

39
Reviewed by John Sullivan.

Source/WebKit2/UIProcess/API/mac/WKView.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ - (NSPrintOperation *)printOperationWithPrintInfo:(NSPrintInfo *)printInfo forFr
12951295
- (BOOL)canChangeFrameLayout:(WKFrameRef)frameRef
12961296
{
12971297
// PDF documents are already paginated, so we can't change them to add headers and footers.
1298-
return !toImpl(frameRef)->isMainFrame() || _data->_pdfViewController;
1298+
return !toImpl(frameRef)->isMainFrame() || !_data->_pdfViewController;
12991299
}
13001300

13011301
@end

0 commit comments

Comments
 (0)