Changeset 101199 in webkit
- Timestamp:
- Nov 26, 2011, 7:05:49 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/platform/wx/FileSystemWx.cpp (modified) (3 diffs)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/waf/build/settings.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r101197 r101199 1 2011-11-26 Kevin Ollivier <kevino@theolliviers.com> 2 3 [wx] Unreviewed build fix. Change the order of wx header includes 4 to avoid a windows.h inclusion order issue, and make sure a stub 5 method returns a value. 6 7 * platform/wx/FileSystemWx.cpp: 8 (WebCore::openFile): 9 1 10 2011-11-26 Alejandro G. Castro <alex@igalia.com> 2 11 -
trunk/Source/WebCore/platform/wx/FileSystemWx.cpp
r99809 r101199 31 31 #include "FileSystem.h" 32 32 33 #include "NotImplemented.h"34 #include "PlatformString.h"35 #include <wtf/text/CString.h>36 37 33 #include <wx/wx.h> 38 34 #include <wx/datetime.h> … … 43 39 #include <wx/filename.h> 44 40 41 #include "NotImplemented.h" 42 #include "PlatformString.h" 43 #include <wtf/text/CString.h> 44 45 45 #if OS(DARWIN) 46 46 #include <CoreFoundation/CoreFoundation.h> … … 123 123 { 124 124 notImplemented(); 125 return 0; 125 126 } 126 127 -
trunk/Tools/ChangeLog
r101189 r101199 1 2011-11-26 Kevin Ollivier <kevino@theolliviers.com> 2 3 [wx] Unreviewed build fix. Enable the inspector. 4 5 * waf/build/settings.py: 6 1 7 2011-11-26 Martin Robinson <mrobinson@igalia.com> 2 8 -
trunk/Tools/waf/build/settings.py
r99811 r101199 239 239 240 240 feature_defines = ['ENABLE_DATABASE', 'ENABLE_SQL_DATABASE', 'ENABLE_XSLT', 'ENABLE_JAVASCRIPT_DEBUGGER', 241 'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS', 241 'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS', 'ENABLE_INSPECTOR', 242 242 'BUILDING_%s' % build_port.upper()] 243 243
Note:
See TracChangeset
for help on using the changeset viewer.