Changeset 79412 in webkit


Ignore:
Timestamp:
Feb 22, 2011 11:13:55 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-02-22 Fabrizio Machado <fabrizio.machado@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Don't fall through case in variantToSetting() if qvariant.type() is Bool
https://bugs.webkit.org/show_bug.cgi?id=54976

Test not needed.

  • WebCoreSupport/InspectorClientQt.cpp:
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r79409 r79412  
     12011-02-22  Fabrizio Machado  <fabrizio.machado@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] Don't fall through case in variantToSetting() if qvariant.type() is Bool
     6        https://bugs.webkit.org/show_bug.cgi?id=54976
     7
     8        Test not needed.
     9       
     10        * WebCoreSupport/InspectorClientQt.cpp:
     11
    1122011-02-22  Alexis Menard  <alexis.menard@openbossa.org>
    213
  • trunk/Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp

    r77950 r79412  
    153153        case QVariant::Bool:
    154154            retVal = qvariant.toBool() ? "true" : "false";
     155            break;
    155156        case QVariant::String:
    156157            retVal = qvariant.toString();
     158            break;
    157159        default:
    158160            break;
Note: See TracChangeset for help on using the changeset viewer.