View Issue Details

IDProjectCategoryView StatusLast Update
0001892JEDI VCL00 JVCL Componentspublic2004-06-25 02:05
ReportercpallAssigned ToAHUser 
PrioritynormalSeverityblockReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001892: Compile Error - jvParameterList
DescriptionI think this was somewhat addressed here, but the build is currently broken for delphi5

http://homepages.borland.com/jedi/issuetracker/bug_view_page.php?bug_id=0001869

around line 1518... needs to be

  with ScrollBox do
  begin
    AutoScroll := False;
    BorderStyle := bsNone;
    {$IFDEF COMPILER6_UP}
    BevelInner := bvNone;
    BevelOuter := bvNone;
    {$ENDIF COMPILER6_UP}
    Align := alClient;
  end;
  RightPanel := TJvPanel.Create(Self);
  RightPanel.Parent := ScrollBox;
  with RightPanel do
  begin
    Align := alRight;
    BorderStyle := bsNone;
    {$IFDEF COMPILER6_UP}
    BevelInner := bvNone;
    BevelOuter := bvNone;
    {$ENDIF COMPILER6_UP}
    Width := Scrollbox.HorzScrollBar.Size+3;
    Visible := False;
  end;
TagsNo tags attached.

Activities

AHUser

2004-06-25 02:05

developer   ~0004618

Fixed in CVS.

The BevelXxx for the JvPanel must not be IFDEFed.

Issue History

Date Modified Username Field Change
2004-06-24 18:56 cpall New Issue
2004-06-25 02:05 AHUser Status new => resolved
2004-06-25 02:05 AHUser Resolution open => fixed
2004-06-25 02:05 AHUser Assigned To => AHUser
2004-06-25 02:05 AHUser Note Added: 0004618