Changeset 64964 in webkit


Ignore:
Timestamp:
Aug 8, 2010 10:43:49 PM (14 years ago)
Author:
Csaba Osztrogonác
Message:

2010-08-08 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by Antonio Gomes.

Web Inspector: Fix warning in WebCore/inspector/InspectorDebuggerAgent.cpp
https://bugs.webkit.org/show_bug.cgi?id=43698

  • inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::editScriptSource): Add suggested parentheses.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64963 r64964  
     12010-08-08  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        Web Inspector: Fix warning in WebCore/inspector/InspectorDebuggerAgent.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=43698
     7
     8        * inspector/InspectorDebuggerAgent.cpp:
     9        (WebCore::InspectorDebuggerAgent::editScriptSource): Add suggested parentheses.
     10
    1112010-08-05  MORITA Hajime  <morrita@google.com>
    212
  • trunk/WebCore/inspector/InspectorDebuggerAgent.cpp

    r64846 r64964  
    130130void InspectorDebuggerAgent::editScriptSource(long, const String& sourceID, const String& newContent, bool* success, String* result, RefPtr<InspectorValue>* newCallFrames)
    131131{
    132     if (*success = ScriptDebugServer::shared().editScriptSource(sourceID, newContent, *result))
     132    if ((*success = ScriptDebugServer::shared().editScriptSource(sourceID, newContent, *result)))
    133133        *newCallFrames = currentCallFrames();
    134134}
Note: See TracChangeset for help on using the changeset viewer.