more sorting

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22111 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-07-19 16:47:15 +00:00
parent e83a52a25a
commit 57700c5097
2 changed files with 454 additions and 424 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -141,10 +141,13 @@ cleanCmds = ''
allK = all.keys()
allK.sort()
cleanList = []
for f in allK:
all[f].sort()
for f in allK:
for i in all[f]:
cleanList.append('\trm -f %s\n' % i)
cleanList.sort()
cleanCmds = ''.join(cleanList)
for f in allK: