Changeset 329
- Timestamp:
- 03/15/10 12:13:08 (5 months ago)
- Location:
- Mulberry/branches/users/shared/externals/v4.1d1/CICalendar
- Files:
-
- 2 modified
-
Makefile.in (modified) (1 diff)
-
Source/CICalendarProperty.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/branches/users/shared/externals/v4.1d1/CICalendar/Makefile.in
r285 r329 101 101 CXXOPT = @CXXOPT@ 102 102 CXXWARN = @CXXWARN@ 103 CPPFLAGS = $(J_RAW_SYSTEM_STUFF) -include ../../Linux/Sources/Mulberry_Prefix.h -I../ ../Sources_Common/i18n/Charsets -I../../Linux/Includes -I../../Sources_Common -I../../Linux/Resources -I../../Sources_Common/Utilities/ -I$(JX_ROOT)/include/jcore -I$(JX_ROOT)/include/jx -I$(JX_ROOT)/include/jximage -I$(JX_ROOT)/ACE/ACE_wrappers103 CPPFLAGS = $(J_RAW_SYSTEM_STUFF) -include ../../Linux/Sources/Mulberry_Prefix.h -I../XMLLib/Source -I../../Sources_Common/i18n/Charsets -I../../Linux/Includes -I../../Sources_Common -I../../Linux/Resources -I../../Sources_Common/Utilities/ -I$(JX_ROOT)/include/jcore -I$(JX_ROOT)/include/jx -I$(JX_ROOT)/include/jximage -I$(JX_ROOT)/ACE/ACE_wrappers 104 104 CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(CXXOPT) $(CXXDEBUG) $(CXXWARN) 105 105 -
Mulberry/branches/users/shared/externals/v4.1d1/CICalendar/Source/CICalendarProperty.cpp
r281 r329 515 515 // Make sure we do not split in the middle of a utf-8 multi-octet sequence 516 516 unsigned char* up = (unsigned char*) p; 517 while((up[bytes] > 0x7F) and((up[bytes] & 0xC0) == 0x80))517 while((up[bytes] > 0x7F) && ((up[bytes] & 0xC0) == 0x80)) 518 518 bytes--; 519 519 }