Changeset 86424 in webkit


Ignore:
Timestamp:
May 13, 2011 5:08:59 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

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

Reviewed by Darin Adler.

GraphicsContext3DQt.cpp fails to compile
https://bugs.webkit.org/show_bug.cgi?id=60740

  • platform/graphics/qt/GraphicsContext3DQt.cpp: (WebCore::GraphicsContext3D::GraphicsContext3D): Change order of initializers.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86422 r86424  
     12011-05-13  Andrew Wason  <rectalogic@rectalogic.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        GraphicsContext3DQt.cpp fails to compile
     6        https://bugs.webkit.org/show_bug.cgi?id=60740
     7
     8        * platform/graphics/qt/GraphicsContext3DQt.cpp:
     9        (WebCore::GraphicsContext3D::GraphicsContext3D):
     10         Change order of initializers.
     11
    1122011-05-05  Hans Wennborg  <hans@chromium.org>
    213
  • trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp

    r86276 r86424  
    687687
    688688GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, bool)
    689     : m_internal(adoptPtr(new GraphicsContext3DInternal(attrs, hostWindow))), m_isResourceSafe(false)
     689    : m_isResourceSafe(false), m_internal(adoptPtr(new GraphicsContext3DInternal(attrs, hostWindow)))
    690690{
    691691    if (!m_internal->isValid())
Note: See TracChangeset for help on using the changeset viewer.