Changeset 117798 in webkit
- Timestamp:
- May 21, 2012, 10:25:35 AM (14 years ago)
- Location:
- trunk/Source
- Files:
-
- 5 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/bindings/js/JSNodeFilterCondition.cpp (modified) (1 diff)
-
WebCore/platform/sql/SQLiteFileSystem.cpp (modified) (1 diff)
-
WebKit2/ChangeLog (modified) (1 diff)
-
WebKit2/UIProcess/API/qt/tests/inspectorserver/tst_inspectorserver.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r117797 r117798 1 2012-05-21 Allan Sandfeld Jensen <allan.jensen@nokia.com> 2 3 GCC 4.7 and C++11 4 https://bugs.webkit.org/show_bug.cgi?id=86465 5 6 Reviewed by Darin Adler. 7 8 Avoid triggering C++11 string literals and use nullptr for correct type casting. 9 10 * bindings/js/JSNodeFilterCondition.cpp: 11 (WebCore::JSNodeFilterCondition::JSNodeFilterCondition): 12 * platform/sql/SQLiteFileSystem.cpp: 13 (WebCore::SQLiteFileSystem::getFileNameForNewDatabase): 14 1 15 2012-05-18 Michael Nordman <michaeln@google.com> 2 16 -
trunk/Source/WebCore/bindings/js/JSNodeFilterCondition.cpp
r115545 r117798 35 35 36 36 JSNodeFilterCondition::JSNodeFilterCondition(JSGlobalData&, NodeFilter* owner, JSValue filter) 37 : m_filter(filter.isObject() ? PassWeak<JSObject>(jsCast<JSObject*>(filter), &m_weakOwner, owner) : 0)37 : m_filter(filter.isObject() ? PassWeak<JSObject>(jsCast<JSObject*>(filter), &m_weakOwner, owner) : nullptr) 38 38 { 39 39 } -
trunk/Source/WebCore/platform/sql/SQLiteFileSystem.cpp
r96123 r117798 76 76 do { 77 77 ++seq; 78 fileName = pathByAppendingComponent(dbDir, String::format("%016" PRIx64".db", seq));78 fileName = pathByAppendingComponent(dbDir, String::format("%016" PRIx64 ".db", seq)); 79 79 } while (fileExists(fileName)); 80 80 81 return String::format("%016" PRIx64".db", seq);81 return String::format("%016" PRIx64 ".db", seq); 82 82 } 83 83 -
trunk/Source/WebKit2/ChangeLog
r117777 r117798 1 2012-05-21 Allan Sandfeld Jensen <allan.jensen@nokia.com> 2 3 GCC 4.7 and C++11 4 https://bugs.webkit.org/show_bug.cgi?id=86465 5 6 Reviewed by Darin Adler. 7 8 Avoid triggering C++11 string literals. 9 10 * UIProcess/API/qt/tests/inspectorserver/tst_inspectorserver.cpp: 11 1 12 2012-05-21 Allan Sandfeld Jensen <allan.jensen@nokia.com> 2 13 -
trunk/Source/WebKit2/UIProcess/API/qt/tests/inspectorserver/tst_inspectorserver.cpp
r113861 r117798 31 31 32 32 #define INSPECTOR_SERVER_PORT "23654" 33 static const QUrl s_inspectorServerHttpBaseUrl("http://localhost:" INSPECTOR_SERVER_PORT);34 static const QUrl s_inspectorServerWebSocketBaseUrl("ws://localhost:" INSPECTOR_SERVER_PORT);33 static const QUrl s_inspectorServerHttpBaseUrl("http://localhost:" INSPECTOR_SERVER_PORT); 34 static const QUrl s_inspectorServerWebSocketBaseUrl("ws://localhost:" INSPECTOR_SERVER_PORT); 35 35 36 36 class tst_InspectorServer : public QObject {
Note:
See TracChangeset
for help on using the changeset viewer.