View Issue Details

IDProjectCategoryView StatusLast Update
0004559JEDI VCL00 JVCL Componentspublic2008-11-01 14:54
ReporterZENsanAssigned ToAHUser 
PrioritynormalSeveritycrashReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.36 
Summary0004559: JvFormPlacement
Descriptionprocedure ResolveAppStoragePath is called without checking for Assigned(AppStorage) - it was after fixing problem with nested frames.
We need to move "ResolveAppStoragePath; //need to resolve if not resolved yet (for Frames)" lines into IF statement. There are two places in JvFormPlacement.pas : 803 line and 826
Additional Information  800 procedure TJvFormPlacement.SaveFormPlacement;
  801 begin
  802
  803 ResolveAppStoragePath; //need to resolve if not resolved yet (for Frames)
  804
  805 if Assigned(AppStorage) then
  806 begin
  807 if Assigned(FBeforeSavePlacement) then
  808 FBeforeSavePlacement(Self);
  809 if VersionCheck <> fpvcNocheck then
  810 WriteInteger(siVersion, FVersion);
  811 Save;
  812 SavePlacement;
  813 if Assigned(FAfterSavePlacement) then
  814 FAfterSavePlacement(Self);
  815 FSaved := True;
  816 end;
  817 end;
TagsNo tags attached.

Activities

AHUser

2008-11-01 14:53

developer   ~0014942

Fixed in SVN.

Issue History

Date Modified Username Field Change
2008-10-31 03:06 ZENsan New Issue
2008-11-01 14:53 AHUser Status new => resolved
2008-11-01 14:53 AHUser Fixed in Version => Daily / SVN
2008-11-01 14:53 AHUser Resolution open => fixed
2008-11-01 14:53 AHUser Assigned To => AHUser
2008-11-01 14:53 AHUser Note Added: 0014942