Test for 10.4 because of <rdar://problem/
4243463>
* WebView.subproj/WebHTMLView.m:
(-[WebHTMLView conversationIdentifier]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@10831
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-10-11 Timothy Hatcher <timothy@apple.com>
+
+ Reviewed by Darin.
+
+ Test for 10.4 because of <rdar://problem/4243463>
+
+ * WebView.subproj/WebHTMLView.m:
+ (-[WebHTMLView conversationIdentifier]):
+
2005-10-11 Adele Peterson <adele@apple.com>
Rolling out fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=5195
return nil;
}
+// test for 10.4 because of <rdar://problem/4243463>
+#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4
- (long)conversationIdentifier
{
return (long)self;
}
+#else
+- (NSInt)conversationIdentifier
+{
+ return (NSInt)self;
+}
+#endif
- (BOOL)hasMarkedText
{