Title: [99199] trunk/Source/WebKit2
Revision
99199
Author
[email protected]
Date
2011-11-03 09:07:22 -0700 (Thu, 03 Nov 2011)

Log Message

Unreviewed build fix after r99195.

The right name is restrictMinimumScaleFactorToViewportSize.

* UIProcess/API/qt/qtouchwebview.cpp:
(QTouchWebViewPrivate::updateViewportConstraints):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99198 => 99199)


--- trunk/Source/WebKit2/ChangeLog	2011-11-03 16:04:49 UTC (rev 99198)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-03 16:07:22 UTC (rev 99199)
@@ -1,3 +1,12 @@
+2011-11-03  Simon Hausmann  <[email protected]>
+
+        Unreviewed build fix after r99195.
+
+        The right name is restrictMinimumScaleFactorToViewportSize.
+
+        * UIProcess/API/qt/qtouchwebview.cpp:
+        (QTouchWebViewPrivate::updateViewportConstraints):
+
 2011-11-03  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Use WEBKIT_API instead of WK_EXPORT in WebKitEnumTypes.h

Modified: trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebview.cpp (99198 => 99199)


--- trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebview.cpp	2011-11-03 16:04:49 UTC (rev 99198)
+++ trunk/Source/WebKit2/UIProcess/API/qt/qtouchwebview.cpp	2011-11-03 16:07:22 UTC (rev 99199)
@@ -92,7 +92,7 @@
     wkPrefs->setDeviceHeight(720);
 
     WebCore::ViewportAttributes attr = WebCore::computeViewportAttributes(viewportArguments, wkPrefs->layoutFallbackWidth(), wkPrefs->deviceWidth(), wkPrefs->deviceHeight(), wkPrefs->deviceDPI(), availableSize);
-    WebCore::restrictMinimumScaleFactorToViewport(attr, availableSize);
+    WebCore::restrictMinimumScaleFactorToViewportSize(attr, availableSize);
     WebCore::restrictScaleFactorToInitialScaleIfNotUserScalable(attr);
 
     QtViewportInteractionEngine::Constraints newConstraints;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to