From fb7eb172817b1bee7e4a5448b4250aa2b5cdeb8a Mon Sep 17 00:00:00 2001 From: rentzsch Date: Mon, 28 Dec 2009 19:59:04 -0600 Subject: [PATCH] [CHANGE] Xmo'd: change file ordering to human.m, human.h, machine.m, machine.h (from human.h, human.m, machine.h, machine.m). --- Xmod/Xmod.applescript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xmod/Xmod.applescript b/Xmod/Xmod.applescript index 731c77ae..c5714e21 100644 --- a/Xmod/Xmod.applescript +++ b/Xmod/Xmod.applescript @@ -36,7 +36,7 @@ on updateProjectXmod(_project) set humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with ".m" or name ends with ".mm") and name does not start with "_") set machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with ".h" and name starts with "_") set machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with ".m" or name ends with ".mm") and name starts with "_") - set fileList to humanHeaderFileList & humanSourceFileList & machineHeaderFileList & machineSourceFileList + set fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList set pathList to {} repeat with fileItem in fileList set pathList to pathList & POSIX path of fileItem