[webkit-changes] cvs commit: WebKitTools/DumpRenderTree
TextInputController.m
Timothy
thatcher at opensource.apple.com
Sun Oct 9 16:15:33 PDT 2005
thatcher 05/10/09 16:15:32
Modified: DumpRenderTree TextInputController.m
Log:
Fixes the following build error when building Deployment:
DumpRenderTree/TextInputController.m: In function '-[TextInputController textInput]':
DumpRenderTree/TextInputController.m:87: warning: class 'NSView <WebDocumentView>' does not implement the 'NSTextInput' protocol
Revision Changes Path
1.2 +1 -1 WebKitTools/DumpRenderTree/TextInputController.m
Index: TextInputController.m
===================================================================
RCS file: /cvs/root/WebKitTools/DumpRenderTree/TextInputController.m,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TextInputController.m 9 Oct 2005 02:57:20 -0000 1.1
+++ TextInputController.m 9 Oct 2005 23:15:32 -0000 1.2
@@ -83,7 +83,7 @@
- (NSObject <NSTextInput> *)textInput
{
- NSView <WebDocumentView> *view = [[[webView mainFrame] frameView] documentView];
+ NSView <NSTextInput> *view = [[[webView mainFrame] frameView] documentView];
return [view conformsToProtocol:@protocol(NSTextInput)] ? view : nil;
}
More information about the webkit-changes
mailing list