View Issue Details

IDProjectCategoryView StatusLast Update
0006623JEDI VCL00 JVCL Componentspublic2018-07-18 16:03
ReporterdummzeuchAssigned Toobones 
PrioritynormalSeverityminorReproducibilityhave not tried
Status resolvedResolutionwon't fix 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0006623: Replace use of sl.ClassType <> TStringList in TGnuGettextInstance.TranslateStrings with sl is TStringList
DescriptionLine 2169:
              if sl.ClassType <> TStringList then
                for I := 0 to sl.Count - 1 do
                  sl.Objects[I] := nil;

I think this should not just check for TStringList but for descendants too, so it should be:

              if sl.ClassType is TStringList then
                for I := 0 to sl.Count - 1 do
                  sl.Objects[I] := nil;
TagsNo tags attached.

Activities

obones

2018-07-18 16:03

administrator   ~0021542

Please report this to the GnuGettext project

Issue History

Date Modified Username Field Change
2018-03-11 13:25 dummzeuch New Issue
2018-07-18 16:03 obones Note Added: 0021542
2018-07-18 16:03 obones Status new => resolved
2018-07-18 16:03 obones Resolution open => won't fix
2018-07-18 16:03 obones Assigned To => obones