[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

evan at chromium.org evan at chromium.org
Fri Jan 21 14:39:59 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit db9cc2ae2b1c137e8a3eb06187c71a13b13593df
Author: evan at chromium.org <evan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 24 04:31:50 2010 +0000

    2010-12-23  Evan Martin  <evan at chromium.org>
    
            Reviewed by Darin Adler.
    
            ViewportArguments.h uses an enum to intialize a bool
            https://bugs.webkit.org/show_bug.cgi?id=50982
    
            Initialize userScalable to true, rather than -1.
            No tests; fixes a compiler warning.
    
            * dom/ViewportArguments.h:
            (WebCore::ViewportArguments::ViewportArguments):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74610 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 24f3ca1..32fdffb 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-12-23  Evan Martin  <evan at chromium.org>
+
+        Reviewed by Darin Adler.
+
+        ViewportArguments.h uses an enum to intialize a bool
+        https://bugs.webkit.org/show_bug.cgi?id=50982
+
+        Initialize userScalable to true, rather than -1.
+        No tests; fixes a compiler warning.
+
+        * dom/ViewportArguments.h:
+        (WebCore::ViewportArguments::ViewportArguments):
+
 2010-12-23  Jan Erik Hanssen  <jhanssen at sencha.com>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/dom/ViewportArguments.h b/WebCore/dom/ViewportArguments.h
index a31e009..4f678f3 100644
--- a/WebCore/dom/ViewportArguments.h
+++ b/WebCore/dom/ViewportArguments.h
@@ -74,7 +74,7 @@ struct ViewportArguments {
         , width(ValueAuto)
         , height(ValueAuto)
         , targetDensityDpi(ValueAuto)
-        , userScalable(ValueAuto)
+        , userScalable(true)
     {
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list