Changeset 262

Show
Ignore:
Timestamp:
11/15/07 15:26:39 (1 year ago)
Author:
rentzsch
Message:

[NEW] Another Xcode 2.5 compatibility tweak.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cocoa/mogenerator/Xmod/Xmod.applescript

    r261 r262  
    4040                                tell modelSrcGroup 
    4141                                        set modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)} 
    42                                         repeat with targetIt in targetList 
    43                                                 add modelSrcFileRef to (targetIt as anything) 
     42                                        repeat with targetIndex from 1 to (count of targetList) 
     43                                                set targetIt to item targetIndex of targetList 
     44                                                add modelSrcFileRef to targetIt 
    4445                                        end repeat 
    4546                                end tell