The MinGW.org Installation Manager Tool
Révision | 621cf63af22f3ff17225ca5895595d6bb4f4d260 (tree) |
---|---|
l'heure | 2013-10-01 21:49:35 |
Auteur | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Correct processing of package group associations.
@@ -1,3 +1,11 @@ | ||
1 | +2013-10-01 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Correct processing of package group associations. | |
4 | + | |
5 | + * src/pkgtree.cpp (AppWindowMaker::IsPackageGroupAffiliate): Iterate | |
6 | + over "affiliate_key" elements in FindNextAssociate() calls; original | |
7 | + implementation was incorrectly iterating over "group_key" elements. | |
8 | + | |
1 | 9 | 2013-09-21 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 10 | |
3 | 11 | Reorder controls within "Apply Changes" dialogue. |
@@ -466,7 +466,7 @@ bool AppWindowMaker::IsPackageGroupAffiliate( pkgXmlNode *package ) | ||
466 | 466 | * check for any further "affiliate" declarations at the |
467 | 467 | * current level within the XML document hierarchy... |
468 | 468 | */ |
469 | - group = group->FindNextAssociate( group_key ); | |
469 | + group = group->FindNextAssociate( affiliate_key ); | |
470 | 470 | } |
471 | 471 | /* ...and at enclosing levels, as may be necessary. |
472 | 472 | */ |