Changeset 174 for oup/current/Tools
- Timestamp:
- May 2, 2007, 5:16:00 PM (18 years ago)
- Location:
- oup/current/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/Tools/BinEdit.dfm
r105 r174 62 62 Colors.EvenColumn = clNavy 63 63 Colors.CurrentOffsetBackground = clBtnShadow 64 Colors.OffsetBack Ground = clBtnFace64 Colors.OffsetBackground = clBtnFace 65 65 Colors.CurrentOffset = clBtnHighlight 66 66 Colors.Grid = clBtnFace … … 71 71 AllowInsertMode = False 72 72 DrawGridLines = False 73 Version = ' May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de'73 Version = 'december 06, 2006; '#169' markus stephany, vcl[at]mirkes[dot]de' 74 74 OnChange = hexChange 75 75 ShowPositionIfNotFocused = True -
oup/current/Tools/BinEdit.pas
r113 r174 468 468 if hex.SelCount = 0 then 469 469 begin 470 while (hex. Data[hex.SelStart + j] > 0) and ((hex.SelStart + j) < hex.DataSize)do470 while (hex.SelStart + j) < hex.DataSize do 471 471 begin 472 if hex.Data[hex.SelStart + j] = 0 then 473 Break; 472 474 if hex.Data[hex.selstart + j] >= 32 then 473 475 str := str + Char(hex.Data[hex.SelStart + j])
Note:
See TracChangeset
for help on using the changeset viewer.