Changeset 57281 in webkit


Ignore:
Timestamp:
Apr 8, 2010 8:57:13 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-08 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Simon Hausmann.

[Qt] Warnings when compiling InspectorClientQt.cpp
https://bugs.webkit.org/show_bug.cgi?id=37266

Add a default: for the switch()-case to avoid
warnings.

  • WebCoreSupport/InspectorClientQt.cpp: (WebCore::variantToSetting):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r57277 r57281  
     12010-04-08  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Warnings when compiling InspectorClientQt.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=37266
     7
     8        Add a default: for the switch()-case to avoid
     9        warnings.
     10
     11        * WebCoreSupport/InspectorClientQt.cpp:
     12        (WebCore::variantToSetting):
     13
    1142010-04-01  Antonio Gomes  <tonikitoo@webkit.org>
    215
  • trunk/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp

    r56984 r57281  
    162162    case QVariant::String:
    163163        retVal = qvariant.toString();
     164    default:
     165        break;
    164166    }
    165167
Note: See TracChangeset for help on using the changeset viewer.