Changeset 175 for oup/current/Tools


Ignore:
Timestamp:
May 2, 2007, 5:16:58 PM (18 years ago)
Author:
alloc
Message:
 
Location:
oup/current/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • oup/current/Tools/RawEdit.dfm

    r105 r175  
    118118      Colors.EvenColumn = clNavy
    119119      Colors.CurrentOffsetBackground = clBtnShadow
    120       Colors.OffsetBackGround = clBtnFace
     120      Colors.OffsetBackground = clBtnFace
    121121      Colors.CurrentOffset = clBtnHighlight
    122122      Colors.Grid = clBtnFace
     
    127127      AllowInsertMode = False
    128128      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'
    130130      OnChange = hexChange
    131131      ShowPositionIfNotFocused = True
  • oup/current/Tools/RawEdit.pas

    r113 r175  
    311311      if hex.SelCount = 0 then
    312312      begin
    313         while (hex.Data[hex.SelStart + j] > 0) and ((hex.SelStart + j) < hex.DataSize) do
     313        while (hex.SelStart + j) < hex.DataSize do
    314314        begin
     315          if hex.Data[hex.SelStart + j] = 0 then
     316            Break;
    315317          if hex.Data[hex.selstart + j] >= 32 then
    316318            str := str + Char(hex.Data[hex.SelStart + j])
Note: See TracChangeset for help on using the changeset viewer.