Changeset 50622 in webkit


Ignore:
Timestamp:
Nov 8, 2009 9:26:01 AM (14 years ago)
Author:
tonikitoo@webkit.org
Message:

[Qt] [DRT] Fix wrong logic in LayoutTestController processWork
https://bugs.webkit.org/show_bug.cgi?id=31164

Patch by Antonio Gomes <tonikitoo@webkit.org> on 2009-11-05
Reviewed by Holger Freyther.

Fixed wrong logic to assume WorkQueue is done in QT's DRT.

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp:

(LayoutTestController::processWork):

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r50621 r50622  
    112009-11-07  Antonio Gomes  <tonikitoo@webkit.org>
     2
     3        Reviewed by Holger Freyther.
     4
     5        [Qt] [DRT] Fix wrong logic in LayoutTestController processWork
     6        https://bugs.webkit.org/show_bug.cgi?id=31164
     7
     8        Fixed wrong logic to assume WorkQueue is done in QT's DRT.
     9
     10        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
     11        (LayoutTestController::processWork):
     12
     132009-11-05  Antonio Gomes  <tonikitoo@webkit.org>
    214
    315        Reviewed by Holger Freyther.
  • trunk/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.cpp

    r50621 r50622  
    7474
    7575    // if we didn't start a new load, then we finished all the commands, so we're ready to dump state
    76     if (!WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) {
     76    if (WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) {
    7777        emit done();
    7878        m_isLoading = false;
Note: See TracChangeset for help on using the changeset viewer.