Change a tag list based on a second tag list.
Source position: utility.pas line 346
procedure ApplyTagChanges( |
TagList: pTagItem; |
const ChangeList: pTagItem |
); |
ChangeList |
|
A list of tags to modify 'list' with (may be nil) |
For any tag that appears in both 'list' and 'changeList', this function will change the ti_Data field of the tag in 'list' to match the ti_Data field of the tag in 'changeList'. In effect, 'changeList' contains a series of new values for tags already in 'list'. Any tag in 'changeList' that is not in 'list' is ignored.
|
Eliminate tags which specify no change. |