Title: [88536] trunk/Source/WebCore
Revision
88536
Author
[email protected]
Date
2011-06-10 04:23:38 -0700 (Fri, 10 Jun 2011)

Log Message

2011-06-10  Ryuan Choi  <[email protected]>

        Reviewed by Andreas Kling.

        [GTK][EFL] m_imageInterpolationQuality is not initialized in PlatformContextCairo::PlatformContextCairo.
        https://bugs.webkit.org/show_bug.cgi?id=62435

        No new tests required as just fixed warning.

        * platform/graphics/cairo/PlatformContextCairo.cpp:
        (WebCore::PlatformContextCairo::PlatformContextCairo):

2011-06-11-06-09  Ilya Tikhonovsky  <[email protected]>

        Reviewed by Yury Semikhatsky.

        Web Inspector: protocol: json: Whitespace can be inserted between any pair of tokens.
        https://bugs.webkit.org/show_bug.cgi?id=62377

        * inspector/InspectorValues.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88535 => 88536)


--- trunk/Source/WebCore/ChangeLog	2011-06-10 10:15:50 UTC (rev 88535)
+++ trunk/Source/WebCore/ChangeLog	2011-06-10 11:23:38 UTC (rev 88536)
@@ -1,3 +1,15 @@
+2011-06-10  Ryuan Choi  <[email protected]>
+
+        Reviewed by Andreas Kling.
+
+        [GTK][EFL] m_imageInterpolationQuality is not initialized in PlatformContextCairo::PlatformContextCairo.
+        https://bugs.webkit.org/show_bug.cgi?id=62435
+
+        No new tests required as just fixed warning.
+
+        * platform/graphics/cairo/PlatformContextCairo.cpp:
+        (WebCore::PlatformContextCairo::PlatformContextCairo):
+
 2011-06-11-06-09  Ilya Tikhonovsky  <[email protected]>
 
         Reviewed by Yury Semikhatsky.

Modified: trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp (88535 => 88536)


--- trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp	2011-06-10 10:15:50 UTC (rev 88535)
+++ trunk/Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp	2011-06-10 11:23:38 UTC (rev 88536)
@@ -74,6 +74,7 @@
 
 PlatformContextCairo::PlatformContextCairo(cairo_t* cr)
     : m_cr(cr)
+    , m_imageInterpolationQuality(InterpolationDefault)
 {
     m_stateStack.append(State());
     m_state = &m_stateStack.last();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to