Bug 31874
| Summary: | isAlphanumeric does not exist on WinCE | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Ismail Donmez <ismail> |
| Component: | Platform | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | ||
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Other | ||
| OS: | Other | ||
Ismail Donmez
Currently trunk fails to compile on Qt/WinCE :
..\..\..\WebCore\platform\text\TextBoundaries.cpp(48) : error C3861: 'isAlphanumeric': identifier not found
..\..\..\WebCore\platform\text\TextBoundaries.cpp(60) : error C3861: 'isAlphanumeric': identifier not found
Thats because there is no isAlphanumeric function in WinCE, not by that name.
There is a IsCharAlphaNumeric [0] function which is defined in winbase.h
[0] http://msdn.microsoft.com/en-us/library/aa910686.aspx
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Ismail Donmez
Fixed in SVN.