View Issue Details

IDProjectCategoryView StatusLast Update
0001982JEDI VCL00 JVCL Componentspublic2004-07-18 08:15
Reporterralf.kaiserAssigned Toobones 
PrioritynormalSeveritytrivialReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001982: TJvAppIniFileStorage append wrong default extension if not specified in object inspector
Descriptionwhen i drop a TJvAppIniFileStorage on the form and enter (e.g.) "CONFIG" as FileName then it appends ".xml" as default extension. I think that should be ".INI", right?
Steps To Reproduce(checkout from Friday, 16 July 2004)
TagsNo tags attached.

Activities

cpall

2004-07-17 21:25

reporter   ~0004769

As easy as pie to fix, but I don't have developer access to cvs, so everyone will have to deal with me putting it here :)

'round line 559:

function TJvCustomAppIniStorage.DefaultExtension : string;
begin
  Result := 'xml';
end;
-------------------
should be....
--------------------
function TJvCustomAppIniStorage.DefaultExtension : string;
begin
  Result := 'ini';
end;
------------

thanks

obones

2004-07-18 08:15

administrator   ~0004771

This is now fixed in CVS

Issue History

Date Modified Username Field Change
2004-07-16 05:05 ralf.kaiser New Issue
2004-07-17 21:25 cpall Note Added: 0004769
2004-07-18 08:14 obones Status new => assigned
2004-07-18 08:14 obones Assigned To => obones
2004-07-18 08:15 obones Status assigned => resolved
2004-07-18 08:15 obones Resolution open => fixed
2004-07-18 08:15 obones Note Added: 0004771