Changeset 61327


Ignore:
Timestamp:
06/17/10 08:16:04 (5 years ago)
Author:
hausmann@webkit.org
Message:

Unreviewed Qt build fix.

LayoutTestController in the Qt DRT is not using refs :)

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(WebCore::DumpRenderTree::DumpRenderTree):

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r61324 r61327  
     12010-06-17  Simon Hausmann  <simon.hausmann@nokia.com> 
     2 
     3        Unreviewed Qt build fix. 
     4 
     5        LayoutTestController in the Qt DRT is not using refs :) 
     6 
     7        * DumpRenderTree/qt/DumpRenderTreeQt.cpp: 
     8        (WebCore::DumpRenderTree::DumpRenderTree): 
     9 
    1102010-06-17  Darin Adler  <darin@apple.com> 
    211 
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp

    r61324 r61327  
    401401    // create our controllers. This has to be done before connectFrame, 
    402402    // as it exports there to the JavaScript DOM window. 
    403     m_controller = LayoutTestController::create(this).releaseRef(); 
     403    m_controller = new LayoutTestController(this); 
    404404    connect(m_controller, SIGNAL(showPage()), this, SLOT(showPage())); 
    405405    connect(m_controller, SIGNAL(hidePage()), this, SLOT(hidePage())); 
Note: See TracChangeset for help on using the changeset viewer.