[webkit-changes] cvs commit: WebKit/WebView.subproj WebPDFView.m
WebTextView.m
Adele
adele at opensource.apple.com
Thu Jul 14 17:56:51 PDT 2005
adele 05/07/14 17:56:50
Modified: . Tag: Ti-2005-007-branch ChangeLog
WebView.subproj Tag: Ti-2005-007-branch WebPDFView.m
WebTextView.m
Log:
* WebView.subproj/WebPDFView.m: added #import of WebFrame.h and WebFrameView.h
* WebView.subproj/WebTextView.m: (-[WebTextView clickedOnLink:atIndex:]): added missing semicolon and fixed typo.
Revision Changes Path
No revision
No revision
1.3118.4.14.2.3 +5 -0 WebKit/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebKit/ChangeLog,v
retrieving revision 1.3118.4.14.2.2
retrieving revision 1.3118.4.14.2.3
diff -u -r1.3118.4.14.2.2 -r1.3118.4.14.2.3
--- ChangeLog 15 Jul 2005 00:01:28 -0000 1.3118.4.14.2.2
+++ ChangeLog 15 Jul 2005 00:56:43 -0000 1.3118.4.14.2.3
@@ -1,5 +1,10 @@
=== WebKit-412.6.2 ===
+2005-07-14 Adele Peterson <adele at apple.com>
+
+ * WebView.subproj/WebPDFView.m: added #import of WebFrame.h and WebFrameView.h
+ * WebView.subproj/WebTextView.m: (-[WebTextView clickedOnLink:atIndex:]): added missing semicolon and fixed typo.
+
2005-07-14 Kevin Decker <kdecker at apple.com>
Merged fix for <rdar://problem/4122282> clicking a link in an PDF file opens the link with NSWorkspace without the usual security checks or WebView delegate control
No revision
No revision
1.10.14.2 +2 -0 WebKit/WebView.subproj/WebPDFView.m
Index: WebPDFView.m
===================================================================
RCS file: /cvs/root/WebKit/WebView.subproj/WebPDFView.m,v
retrieving revision 1.10.14.1
retrieving revision 1.10.14.2
diff -u -r1.10.14.1 -r1.10.14.2
--- WebPDFView.m 14 Jul 2005 23:40:50 -0000 1.10.14.1
+++ WebPDFView.m 15 Jul 2005 00:56:50 -0000 1.10.14.2
@@ -7,7 +7,9 @@
#import <Foundation/NSString_NSURLExtras.h>
+#import <WebKit/WebFrame.h>
#import <WebKit/WebFrameInternal.h>
+#import <WebKit/WebFrameView.h>
#import <WebKit/WebAssertions.h>
#import <WebKit/WebDataSource.h>
#import <WebKit/WebLocalizableStrings.h>
1.53.8.1.2.2 +1 -1 WebKit/WebView.subproj/WebTextView.m
Index: WebTextView.m
===================================================================
RCS file: /cvs/root/WebKit/WebView.subproj/WebTextView.m,v
retrieving revision 1.53.8.1.2.1
retrieving revision 1.53.8.1.2.2
diff -u -r1.53.8.1.2.1 -r1.53.8.1.2.2
--- WebTextView.m 14 Jul 2005 23:40:50 -0000 1.53.8.1.2.1
+++ WebTextView.m 15 Jul 2005 00:56:50 -0000 1.53.8.1.2.2
@@ -346,7 +346,7 @@
}
if (URL != nil) {
WebFrame *frame = [[self _web_parentWebFrameView] webFrame];
- [frame _saveLoadURL:URL]
+ [frame _safeLoadURL:URL];
}
}
More information about the webkit-changes
mailing list