Title: [96196] trunk/Source/WebCore
Revision
96196
Author
[email protected]
Date
2011-09-28 00:22:38 -0700 (Wed, 28 Sep 2011)

Log Message

Missing initialization of member in ImageFrameQt class
https://bugs.webkit.org/show_bug.cgi?id=68943

Patch by Adenilson Cavalcanti <[email protected]> on 2011-09-28
Reviewed by Kenneth Rohde Christiansen.

No new tests, this fixes internal implementation detail.

* platform/image-decoders/qt/ImageFrameQt.cpp:
(WebCore::ImageFrame::ImageFrame):
(WebCore::ImageFrame::operator=):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96195 => 96196)


--- trunk/Source/WebCore/ChangeLog	2011-09-28 07:12:40 UTC (rev 96195)
+++ trunk/Source/WebCore/ChangeLog	2011-09-28 07:22:38 UTC (rev 96196)
@@ -1,3 +1,16 @@
+2011-09-28  Adenilson Cavalcanti  <[email protected]>
+
+        Missing initialization of member in ImageFrameQt class
+        https://bugs.webkit.org/show_bug.cgi?id=68943
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        No new tests, this fixes internal implementation detail.
+
+        * platform/image-decoders/qt/ImageFrameQt.cpp:
+        (WebCore::ImageFrame::ImageFrame):
+        (WebCore::ImageFrame::operator=):
+
 2011-09-27  Luke Macpherson   <[email protected]>
 
         Defer call to CSSValue::isPrimitiveValue(), saves ~4% in CSSStyleSelector::applyProperty().

Modified: trunk/Source/WebCore/platform/image-decoders/qt/ImageFrameQt.cpp (96195 => 96196)


--- trunk/Source/WebCore/platform/image-decoders/qt/ImageFrameQt.cpp	2011-09-28 07:12:40 UTC (rev 96195)
+++ trunk/Source/WebCore/platform/image-decoders/qt/ImageFrameQt.cpp	2011-09-28 07:22:38 UTC (rev 96196)
@@ -41,6 +41,7 @@
     , m_status(FrameEmpty)
     , m_duration(0)
     , m_disposalMethod(DisposeNotSpecified)
+    , m_premultiplyAlpha(true)
 {
 }
 
@@ -54,6 +55,7 @@
     setStatus(other.status());
     setDuration(other.duration());
     setDisposalMethod(other.disposalMethod());
+    setPremultiplyAlpha(other.premultiplyAlpha());
     return *this;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to