Title: [96008] trunk/Source/WebCore
- Revision
- 96008
- Author
- rn...@webkit.org
- Date
- 2011-09-26 15:27:19 -0700 (Mon, 26 Sep 2011)
Log Message
Leopard build fix.
* testing/Internals.cpp:
(WebCore::Internals::setZoomAnimatorTransform):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (96007 => 96008)
--- trunk/Source/WebCore/ChangeLog 2011-09-26 22:22:23 UTC (rev 96007)
+++ trunk/Source/WebCore/ChangeLog 2011-09-26 22:27:19 UTC (rev 96008)
@@ -1,3 +1,10 @@
+2011-09-26 Ryosuke Niwa <rn...@webkit.org>
+
+ Leopard build fix.
+
+ * testing/Internals.cpp:
+ (WebCore::Internals::setZoomAnimatorTransform):
+
2011-09-26 Joshua Bell <jsb...@chromium.org>
IndexedDB: Null key path gets stored as empty string key path
Modified: trunk/Source/WebCore/testing/Internals.cpp (96007 => 96008)
--- trunk/Source/WebCore/testing/Internals.cpp 2011-09-26 22:22:23 UTC (rev 96007)
+++ trunk/Source/WebCore/testing/Internals.cpp 2011-09-26 22:27:19 UTC (rev 96008)
@@ -251,8 +251,8 @@
return;
}
- document->settings()->setZoomAnimatorScale(scale);
- document->settings()->setZoomAnimatorPosition(tx, ty);
+ document->settings()->setZoomAnimatorScale(static_cast<float>(scale));
+ document->settings()->setZoomAnimatorPosition(static_cast<float>(tx), static_cast<float>(ty));
}
void Internals::setPasswordEchoEnabled(Document* document, bool enabled, ExceptionCode& ec)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes