- fix deployment build on Panther
* WebView.subproj/WebHTMLView.m:
(-[WebHTMLView changeBaseWritingDirection:]): ifdef out NSWritingDirectionNatural
(-[WebHTMLView toggleBaseWritingDirection:]): fix a spacing issue
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@8578
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-02-11 Vicki Murley <vicki@apple.com>
+
+ Reviewed by Darin.
+
+ - fix deployment build on Panther
+
+ * WebView.subproj/WebHTMLView.m:
+ (-[WebHTMLView changeBaseWritingDirection:]): ifdef out NSWritingDirectionNatural
+ (-[WebHTMLView toggleBaseWritingDirection:]): fix a spacing issue
+
2005-02-10 David Harrison <harrison@apple.com>
Reviewed by Richard.
break;
// The writingDirectionForSelectionStart method will never return "natural". It
// will always return a concrete direction. So, keep the compiler happy, and assert not reached.
-#if !BUILDING_ON_PANTHER
+#if !BUILDING_ON_PANTHER
case NSWritingDirectionNatural:
ASSERT_NOT_REACHED();
break;
NSString *direction = @"LTR";
switch (writingDirection) {
case NSWritingDirectionLeftToRight:
+#if !BUILDING_ON_PANTHER
case NSWritingDirectionNatural:
+#endif
break;
case NSWritingDirectionRightToLeft:
direction = @"RTL";