Changeset 240590 in webkit


Ignore:
Timestamp:
Jan 28, 2019 11:09:40 AM (5 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed follow-up to r240557, restore a call to makeString
https://bugs.webkit.org/show_bug.cgi?id=192742
<rdar://problem/46757369>

It works if we add this #include that was missing. I got confused by the error messages and
missed that there were two similarly-named headers.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::logLayerInfo):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r240588 r240590  
     12019-01-28  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed follow-up to r240557, restore a call to makeString
     4        https://bugs.webkit.org/show_bug.cgi?id=192742
     5        <rdar://problem/46757369>
     6
     7        It works if we add this #include that was missing. I got confused by the error messages and
     8        missed that there were two similarly-named headers.
     9
     10        * rendering/RenderLayerCompositor.cpp:
     11        (WebCore::RenderLayerCompositor::logLayerInfo):
     12
    1132019-01-28  Oriol Brufau  <obrufau@igalia.com>
    214
  • trunk/Source/WebCore/rendering/RenderLayerCompositor.cpp

    r240558 r240590  
    6565#include <wtf/text/CString.h>
    6666#include <wtf/text/StringBuilder.h>
     67#include <wtf/text/StringConcatenateNumbers.h>
    6768#include <wtf/text/TextStream.h>
    6869
     
    12791280   
    12801281    if (!layer.renderer().style().hasAutoZIndex())
    1281         logString.append(String::format(" z-index: %d", layer.renderer().style().zIndex()));
     1282        logString.append(makeString(" z-index: ", layer.renderer().style().zIndex()));
    12821283
    12831284    logString.appendLiteral(" (");
Note: See TracChangeset for help on using the changeset viewer.