Changeset 449 for trunk/src/cppbase/bs_string_conv.cpp
- Timestamp:
- Sep 5, 2020, 7:17:44 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/cppbase/bs_string_conv.cpp
r370 r449 48 48 #pragma hdrstop 49 49 50 #define CP_UTF8 1208 50 #define CP_UTF8 1208 51 #define UNI_COPYRIGHT 0xA9 51 52 52 53 DEFINE_CLASS(BSUniCodec, BSRoot); … … 255 256 * 256 257 *@@changed WarpIN V1.0.18 (2008-09-24) [pr]: added codepage 1208 support @@fixes 1127 258 *@@changed WarpIN V1.0.25 (2020-09-05) [pr]: added copyright symbol substitution 257 259 */ 258 260 … … 282 284 { 283 285 if (us == 0xFFFF) 284 us = '?'; 286 if (ulUni == UNI_COPYRIGHT) 287 { 288 xstrcat(&xstrNew, "(C)", 3); 289 continue; 290 } 291 else 292 us = '?'; 285 293 else if (_fDouble) 286 294 {
Note:
See TracChangeset
for help on using the changeset viewer.