Changeset 63939 in webkit


Ignore:
Timestamp:
Jul 22, 2010 7:02:57 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-22 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Antonio Gomes.

[EFL] Log function is incorrectly used.
r63804 used LOG function, but it should receive one more parameter.
Used LOG_ERROR instead, since this is an error message.
https://bugs.webkit.org/show_bug.cgi?id=42842

  • platform/efl/WidgetEfl.cpp: (WebCore::Widget::applyFallbackCursor): use LOG_ERROR in place of LOG
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63929 r63939  
     12010-07-22  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Log function is incorrectly used.
     6        r63804 used LOG function, but it should receive one more parameter.
     7        Used LOG_ERROR instead, since this is an error message.
     8        https://bugs.webkit.org/show_bug.cgi?id=42842
     9
     10        * platform/efl/WidgetEfl.cpp:
     11        (WebCore::Widget::applyFallbackCursor): use LOG_ERROR in place of LOG
     12
    1132010-07-22  Kent Tamura  <tkent@chromium.org>
    214
  • trunk/WebCore/platform/efl/WidgetEfl.cpp

    r63804 r63939  
    223223    }
    224224#endif
    225     LOG("Ooops, no fallback to set cursor %s!\n",
    226         m_data->m_cursorGroup.utf8().data());
     225    LOG_ERROR("Ooops, no fallback to set cursor %s!\n",
     226              m_data->m_cursorGroup.utf8().data());
    227227}
    228228
Note: See TracChangeset for help on using the changeset viewer.