Changeset 175 for oup/current
- Timestamp:
- May 2, 2007, 5:16:58 PM (18 years ago)
- Location:
- oup/current
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/Tools/RawEdit.dfm
r105 r175 118 118 Colors.EvenColumn = clNavy 119 119 Colors.CurrentOffsetBackground = clBtnShadow 120 Colors.OffsetBack Ground = clBtnFace120 Colors.OffsetBackground = clBtnFace 121 121 Colors.CurrentOffset = clBtnHighlight 122 122 Colors.Grid = clBtnFace … … 127 127 AllowInsertMode = False 128 128 DrawGridLines = False 129 Version = ' May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'129 Version = 'december 06, 2006; '#169' markus stephany, vcl[at]mirkes[dot]de' 130 130 OnChange = hexChange 131 131 ShowPositionIfNotFocused = True -
oup/current/Tools/RawEdit.pas
r113 r175 311 311 if hex.SelCount = 0 then 312 312 begin 313 while (hex. Data[hex.SelStart + j] > 0) and ((hex.SelStart + j) < hex.DataSize)do313 while (hex.SelStart + j) < hex.DataSize do 314 314 begin 315 if hex.Data[hex.SelStart + j] = 0 then 316 Break; 315 317 if hex.Data[hex.selstart + j] >= 32 then 316 318 str := str + Char(hex.Data[hex.SelStart + j])
Note:
See TracChangeset
for help on using the changeset viewer.