Share

Delphi Dom HTML Parser and Converter

Tracker: Bugs

5 Two bugs - ID: 788490
Last Update: Comment added ( k_koch )

There are two bugs i've fixed.

1. In Delphi 7, the resourcestrings used by WStrings
(SDuplicateString, SListIndexError, SSortedListError) are
defined in the unit RTLConsts.pas.

i've included the compilers.inc file from VirtualTreeView
and a define to see if Delphi 7+ is being used, and so to
add RTLConsts to the implementation uses.

2. In formatter.pas, the constant SHOW_ALL was
defined to be $FFFFFF. i changed this to -1, since an
assignment to an Integer variable was complaining
about "violates subrange bounds" (Formatter.Create line
217)


Changes:

WStrings.pas

{$INCLUDE compilers.inc}

implementation

uses
Consts
{$IFDEF DELPHI_7_UP}, RTLConsts{$ENDIF}
;


Formatter.pas

const
{changed to -1
Ian Boyd - 8/13/2003}
SHOW_ALL = -1; //$FFFFFFFF;


Ian Boyd ( josejimeniz ) - 2003-08-14 02:53

5

Closed

Fixed

Nobody/Anonymous

None

None

Public


Comments ( 2 )




Date: 2003-08-20 23:26
Sender: k_kochProject Admin

Logged In: YES
user_id=508618

Fixed and tested in D3 and D7 personal.


Date: 2003-08-18 22:23
Sender: k_kochProject Admin

Logged In: YES
user_id=508618

Probably fixed and tested in D6.


Log in to comment.

Attached File

No Files Currently Attached

Changes ( 3 )

Field Old Value Date By
status_id Open 2003-08-20 23:26 k_koch
close_date - 2003-08-20 23:26 k_koch
resolution_id None 2003-08-18 22:23 k_koch