Changeset 1302

Show
Ignore:
Timestamp:
06/09/09 20:14:35 (9 months ago)
Author:
tsnorri
Message:

Bug fixes
- Fixed a method name in documentation.
- Added BaseTenAppKit? to frameworks copied inside BaseTen? Assistant. For some reason it was missing causing the application not to launch.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/BaseTenAssistant/BaseTenAssistant.xcodeproj/project.pbxproj

    r1279 r1302  
    2828                536CB9CD0B0D217000EBCB39 /* Schema16.png in Resources */ = {isa = PBXBuildFile; fileRef = 536CB9C70B0D217000EBCB39 /* Schema16.png */; }; 
    2929                536CB9CE0B0D217000EBCB39 /* Table16.png in Resources */ = {isa = PBXBuildFile; fileRef = 536CB9C80B0D217000EBCB39 /* Table16.png */; }; 
     30                536D93E80FDECF6700439719 /* BaseTenAppKit.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 53F749980E362E62003C2E55 /* BaseTenAppKit.framework */; }; 
    3031                536E603B0E263A8600098C4A /* Import.xib in Resources */ = {isa = PBXBuildFile; fileRef = 532F429E0D69B70F009FEDCD /* Import.xib */; }; 
    3132                5374E69A0B0DC8A4000D353D /* MKCPolishedHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5374E6980B0DC8A4000D353D /* MKCPolishedHeaderView.m */; }; 
     
    99100                        remoteInfo = "BaseTen for iPhone"; 
    100101                }; 
     102                536D93E90FDECF8200439719 /* PBXContainerItemProxy */ = { 
     103                        isa = PBXContainerItemProxy; 
     104                        containerPortal = 53F749930E362E62003C2E55 /* BaseTenAppKit.xcodeproj */; 
     105                        proxyType = 1; 
     106                        remoteGlobalIDString = 535444570D634D9C002A6C47 /* BaseTenAppKit + GC */; 
     107                        remoteInfo = "BaseTenAppKit + GC"; 
     108                }; 
    101109                5388DCDA0E23AE22006CDBD8 /* PBXContainerItemProxy */ = { 
    102110                        isa = PBXContainerItemProxy; 
     
    165173                        files = ( 
    166174                                53F7498F0E362E53003C2E55 /* BaseTen.framework in Copy Frameworks */, 
     175                                536D93E80FDECF6700439719 /* BaseTenAppKit.framework in Copy Frameworks */, 
    167176                                5395E8450E2F9FE8006E8441 /* RegexKit.framework in Copy Frameworks */, 
    168177                        ); 
     
    257266                        buildActionMask = 2147483647; 
    258267                        files = ( 
     268                                5388DE2A0E23AE48006CDBD8 /* Cocoa.framework in Frameworks */, 
    259269                                5388DCDE0E23AE27006CDBD8 /* BaseTen.framework in Frameworks */, 
    260                                 5388DE2A0E23AE48006CDBD8 /* Cocoa.framework in Frameworks */, 
     270                                53D3420E0FCAEB6B00DE60BE /* BaseTenAppKit.framework in Frameworks */, 
    261271                                5395E8340E2F9F1D006E8441 /* RegexKit.framework in Frameworks */, 
    262                                 53D3420E0FCAEB6B00DE60BE /* BaseTenAppKit.framework in Frameworks */, 
    263272                        ); 
    264273                        runOnlyForDeploymentPostprocessing = 0; 
     
    462471                        dependencies = ( 
    463472                                5388DE670E23AE6C006CDBD8 /* PBXTargetDependency */, 
     473                                536D93EA0FDECF8200439719 /* PBXTargetDependency */, 
     474                                530D55820E489F1B006BDEB2 /* PBXTargetDependency */, 
    464475                                5395E8360E2F9F30006E8441 /* PBXTargetDependency */, 
    465                                 530D55820E489F1B006BDEB2 /* PBXTargetDependency */, 
    466476                        ); 
    467477                        name = Assistant; 
     
    670680                        name = InterfaceBuilderPlugin; 
    671681                        targetProxy = 530D55810E489F1B006BDEB2 /* PBXContainerItemProxy */; 
     682                }; 
     683                536D93EA0FDECF8200439719 /* PBXTargetDependency */ = { 
     684                        isa = PBXTargetDependency; 
     685                        name = "BaseTenAppKit + GC"; 
     686                        targetProxy = 536D93E90FDECF8200439719 /* PBXContainerItemProxy */; 
    672687                }; 
    673688                5388DE670E23AE6C006CDBD8 /* PBXTargetDependency */ = { 
  • trunk/Sources/BaseTen.h

    r1294 r1302  
    899899 * 
    900900 * When using autocommit, each query creates its own transaction and changes get propagated immediately to other clients.  
    901  * Undo works at the level of -[BXDatabaseObject setPrimitiveValueForKey:]. For each change an invocation of the method 
     901 * Undo works at the level of -[BXDatabaseObject setPrimitiveValue:forKey:]. For each change an invocation of the method 
    902902 * is added to the undo manager with the earlier value as a parameter. 
    903903 *