Changeset 86861 in webkit


Ignore:
Timestamp:
May 19, 2011 11:39:14 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-19 Andrew Wason <rectalogic@rectalogic.com>

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.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86855 r86861  
     12011-05-19  Andrew Wason  <rectalogic@rectalogic.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix GraphicsContext3DQt.cpp compile error
     6        https://bugs.webkit.org/show_bug.cgi?id=61128
     7
     8        * platform/graphics/qt/GraphicsContext3DQt.cpp:
     9        (WebCore::GraphicsContext3D::GraphicsContext3D):
     10         clear() m_internal OwnPtr.
     11
    1122011-05-19  Tonis Tiigi  <tonistiigi@gmail.com>
    213
  • trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp

    r86424 r86861  
    690690{
    691691    if (!m_internal->isValid())
    692         m_internal = 0;
     692        m_internal.clear();
    693693}
    694694
Note: See TracChangeset for help on using the changeset viewer.