Changeset 33560 in vbox
- Timestamp:
- Oct 28, 2010 2:25:30 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/uni.h
r31418 r33560 126 126 { 127 127 if (pCur->BeginCP <= CodePoint) 128 CodePoint =pCur->pafFlags[CodePoint - pCur->BeginCP];128 return pCur->pafFlags[CodePoint - pCur->BeginCP]; 129 129 break; 130 130 } 131 131 pCur++; 132 132 } while (pCur->EndCP != RTUNICP_MAX); 133 return CodePoint;133 return 0; 134 134 } 135 135 -
trunk/src/VBox/Runtime/common/string/unidata.cpp
r28800 r33560 22570 22570 22571 22571 22572 const RTUNIFLAGSRANGE g_aRTUniFlag Ranges[] =22572 const RTUNIFLAGSRANGE g_aRTUniFlagsRanges[] = 22573 22573 { 22574 22574 { 0x000000, 0x003401, &g_afRTUniFlags0x000000[0] }, -
trunk/src/VBox/Runtime/common/string/uniread.cpp
r33540 r33560 1020 1020 */ 1021 1021 Stream2Init(); 1022 Stream2Printf("const RTUNIFLAGSRANGE g_aRTUniFlag Ranges[] =\n"1022 Stream2Printf("const RTUNIFLAGSRANGE g_aRTUniFlagsRanges[] =\n" 1023 1023 "{\n"); 1024 1024 RTUNICP i = 0;
Note:
See TracChangeset
for help on using the changeset viewer.