Title: [86861] trunk/Source/WebCore
Revision
86861
Author
[email protected]
Date
2011-05-19 11:39:14 -0700 (Thu, 19 May 2011)

Log Message

2011-05-19  Andrew Wason  <[email protected]>

        Reviewed by Darin Adler.

        Fix GraphicsContext3DQt.cpp compile error
        https://bugs.webkit.org/show_bug.cgi?id=61128

        * platform/graphics/qt/GraphicsContext3DQt.cpp:
        (WebCore::GraphicsContext3D::GraphicsContext3D):
         clear() m_internal OwnPtr.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (86860 => 86861)


--- trunk/Source/WebCore/ChangeLog	2011-05-19 18:38:08 UTC (rev 86860)
+++ trunk/Source/WebCore/ChangeLog	2011-05-19 18:39:14 UTC (rev 86861)
@@ -1,3 +1,14 @@
+2011-05-19  Andrew Wason  <[email protected]>
+
+        Reviewed by Darin Adler.
+
+        Fix GraphicsContext3DQt.cpp compile error
+        https://bugs.webkit.org/show_bug.cgi?id=61128
+
+        * platform/graphics/qt/GraphicsContext3DQt.cpp:
+        (WebCore::GraphicsContext3D::GraphicsContext3D):
+         clear() m_internal OwnPtr.
+
 2011-05-19  Tonis Tiigi  <[email protected]>
 
         Reviewed by Pavel Feldman.

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp (86860 => 86861)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp	2011-05-19 18:38:08 UTC (rev 86860)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp	2011-05-19 18:39:14 UTC (rev 86861)
@@ -689,7 +689,7 @@
     : m_isResourceSafe(false), m_internal(adoptPtr(new GraphicsContext3DInternal(attrs, hostWindow)))
 {
     if (!m_internal->isValid())
-        m_internal = 0;
+        m_internal.clear();
 }
 
 GraphicsContext3D::~GraphicsContext3D()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to