[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

ggaren at apple.com ggaren at apple.com
Thu Oct 29 20:49:16 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 81e1876cbf3bc239eca66e1a48367b9b277d66e1
Author: ggaren at apple.com <ggaren at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 20 21:56:00 2009 +0000

    Windows build fix: updated variable name.
    
    Patch by Geoffrey Garen <ggaren at apple.com> on 2009-10-20
    * runtime/DatePrototype.cpp:
    (JSC::formatLocaleDate):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49889 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index bbebf9d..9252307 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2009-10-20  Geoffrey Garen  <ggaren at apple.com>
 
+        Windows build fix: updated variable name.
+
+        * runtime/DatePrototype.cpp:
+        (JSC::formatLocaleDate):
+
+2009-10-20  Geoffrey Garen  <ggaren at apple.com>
+
         Reviewed by Mark Rowe.
 
         * jit/JITOpcodes.cpp:
diff --git a/JavaScriptCore/runtime/DatePrototype.cpp b/JavaScriptCore/runtime/DatePrototype.cpp
index fbd6c6f..18561d2 100644
--- a/JavaScriptCore/runtime/DatePrototype.cpp
+++ b/JavaScriptCore/runtime/DatePrototype.cpp
@@ -254,7 +254,7 @@ static JSCell* formatLocaleDate(ExecState* exec, const GregorianDateTime& gdt, L
 static JSCell* formatLocaleDate(ExecState* exec, DateInstance* dateObject, double, LocaleDateTimeFormat format, const ArgList&)
 {
     GregorianDateTime gregorianDateTime;
-    const bool notUTC = false;
+    const bool outputIsUTC = false;
     if (!dateObject->getGregorianDateTime(outputIsUTC, gregorianDateTime))
         return jsNontrivialString(exec, "Invalid Date");
     return formatLocaleDate(exec, gregorianDateTime, format);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list