Title: [94519] trunk/Source
Revision
94519
Author
[email protected]
Date
2011-09-05 01:49:57 -0700 (Mon, 05 Sep 2011)

Log Message

[Qt][WK2] Fix the build

Rubber-stamped by Csaba Osztrogonác.

Source/_javascript_Core:

* wtf/dtoa/double-conversion.cc: Remove dead variable in file added in r94452.
The variable fractional_part is only set but never used.

Source/WebKit2:

* DerivedSources.pro: Add missing PluginProcessConnection.messages.in after r94456.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94518 => 94519)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-05 08:36:25 UTC (rev 94518)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-05 08:49:57 UTC (rev 94519)
@@ -1,3 +1,12 @@
+2011-09-05  Andras Becsi  <[email protected]>
+
+        [Qt][WK2] Fix the build
+
+        Rubber-stamped by Csaba Osztrogonác.
+
+        * wtf/dtoa/double-conversion.cc: Remove dead variable in file added in r94452.
+        The variable fractional_part is only set but never used.
+
 2011-09-04  Mark Hahnenberg  <[email protected]>
 
         REGRESSION (r94452): 20 http/tests tests failing on Qt Linux Release

Modified: trunk/Source/_javascript_Core/wtf/dtoa/double-conversion.cc (94518 => 94519)


--- trunk/Source/_javascript_Core/wtf/dtoa/double-conversion.cc	2011-09-05 08:36:25 UTC (rev 94518)
+++ trunk/Source/_javascript_Core/wtf/dtoa/double-conversion.cc	2011-09-05 08:49:57 UTC (rev 94519)
@@ -606,8 +606,6 @@
         int significant_digits = 0;
         int insignificant_digits = 0;
         bool nonzero_digit_dropped = false;
-        bool fractional_part = false;
-        
         bool sign = false;
         
         if (*current == '+' || *current == '-') {
@@ -749,10 +747,7 @@
                     exponent--;  // Move this 0 into the exponent.
                 }
             }
-            
-            // We don't emit a '.', but adjust the exponent instead.
-            fractional_part = true;
-            
+
             // There is a fractional part.
             while (*current >= '0' && *current <= '9') {
                 if (significant_digits < kMaxSignificantDigits) {

Modified: trunk/Source/WebKit2/ChangeLog (94518 => 94519)


--- trunk/Source/WebKit2/ChangeLog	2011-09-05 08:36:25 UTC (rev 94518)
+++ trunk/Source/WebKit2/ChangeLog	2011-09-05 08:49:57 UTC (rev 94519)
@@ -1,3 +1,11 @@
+2011-09-05  Andras Becsi  <[email protected]>
+
+        [Qt][WK2] Fix the build
+
+        Rubber-stamped by Csaba Osztrogonác.
+
+        * DerivedSources.pro: Add missing PluginProcessConnection.messages.in after r94456.
+
 2011-09-02  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r94473.

Modified: trunk/Source/WebKit2/DerivedSources.pro (94518 => 94519)


--- trunk/Source/WebKit2/DerivedSources.pro	2011-09-05 08:36:25 UTC (rev 94518)
+++ trunk/Source/WebKit2/DerivedSources.pro	2011-09-05 08:49:57 UTC (rev 94519)
@@ -99,6 +99,7 @@
     DrawingAreaProxy.messages.in \
     PluginControllerProxy.messages.in \
     PluginProcess.messages.in \
+    PluginProcessConnection.messages.in \
     PluginProcessProxy.messages.in \
     PluginProxy.messages.in \
     WebApplicationCacheManager.messages.in \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to