Changeset 522 for trunk/Cocoa


Ignore:
Timestamp:
05/25/09 03:21:44 (15 years ago)
Author:
Nicholas Riley
Message:

Spaces fixes.

Location:
trunk/Cocoa/Pester/Source
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSAlarmNotifierController.m

    r356 r522  
    1010#import "PSAlarmAlertController.h"
    1111#import "PSAlarm.h"
     12#import "PSApplication.h"
    1213#import "PSNotifierAlert.h"
    1314#import "PSSnoozeUntilController.h"
     
    4950        [window setFrame: frameRect display: NO];
    5051        [window center];
    51         [window makeKeyAndOrderFront: nil];
     52        [window makeKeyAndOrderFront: nil];
    5253        [window orderFrontRegardless];
     54        [(PSApplication *)NSApp orderOutSetAlarmPanelIfHidden];
    5355    }
    5456    return self;
  • trunk/Cocoa/Pester/Source/PSAlarmSetController.h

    r364 r522  
    3131    IBOutlet NSTabView *alertTabs;
    3232    IBOutlet NSButtonCell *displayMessage;
    33     IBOutlet NSButton *bounceDockIcon;
     33    IBOutlet NSButtonCell *bounceDockIcon;
    3434    IBOutlet NSButtonCell *playSound;
    3535    IBOutlet NJRQTMediaPopUpButton *sound;
  • trunk/Cocoa/Pester/Source/PSAlarmSetController.m

    r364 r522  
    114114    [voice setDelegate: self]; // XXX why don't we do this in IB?  It should use the accessor...
    115115    [wakeUp setEnabled: [PSPowerManager autoWakeSupported]];
     116   
    116117    // XXX workaround for 10.1.x and 10.2.x bug which sets the first responder to the wrong field alternately, but it works if I set the initial first responder to nil... go figure.
    117     [[self window] setInitialFirstResponder: nil];
    118     [[self window] makeKeyAndOrderFront: nil];
     118    NSWindow *window = [self window];
     119    [window setInitialFirstResponder: nil];
     120    [window makeKeyAndOrderFront: nil];
    119121}
    120122
     
    422424    while ( (alert = [e nextObject]) != nil) {
    423425        if ([alert isKindOfClass: [PSDockBounceAlert class]]) {
    424             [bounceDockIcon setState: NSOnState];
     426            [bounceDockIcon setIntValue: YES]; // temporary for 1.1b8
    425427        } else if ([alert isKindOfClass: [PSScriptAlert class]]) {
    426428            [doScript setIntValue: YES];
     
    455457    @try {
    456458        // dock bounce alert
    457         if ([bounceDockIcon state] == NSOnState)
     459        if ([bounceDockIcon intValue]) // temporary for 1.1b8
    458460            [alerts addAlert: [PSDockBounceAlert alert]];
    459461        // script alert
     
    500502- (IBAction)showWindow:(id)sender;
    501503{
    502     if (![[self window] isVisible]) {
     504    NSWindow *window = [self window];
     505   
     506    if (![window isVisible]) {
    503507        NSDate *today = [NSCalendarDate dateForDay: [NSDate date]];
    504508        if ([(NSDate *)[timeDate objectValue] compare: today] == NSOrderedAscending) {
     
    507511        [self update: self];
    508512        // XXX bug workaround - otherwise, first responder appears to alternate every time the window is shown.  And if you set the initial first responder, you can't tab in the window. :(
    509         [[self window] makeFirstResponder: [[self window] initialFirstResponder]];
    510     }
     513        [window makeFirstResponder: [window initialFirstResponder]];
     514    }
     515   
    511516    [super showWindow: sender];
    512517}
  • trunk/Cocoa/Pester/Source/PSApplication.h

    r129 r522  
    2828- (IBAction)stopAlerts:(id)sender;
    2929
     30- (void)orderOutSetAlarmPanelIfHidden;
     31
    3032@end
  • trunk/Cocoa/Pester/Source/PSApplication.m

    r364 r522  
    1818#import "PSTimer.h"
    1919#import "NJRHotKey.h"
     20#import "NSWindowCollectionBehavior.h"
    2021
    2122#import <Carbon/Carbon.h>
     
    4950- (IBAction)orderFrontSetAlarmPanel:(id)sender;
    5051{
     52    NSWindow *window = [alarmSetController window];
     53    if ([window respondsToSelector: @selector(setCollectionBehavior:)]) { // 10.5-only
     54        // XXX bug workaround - NSWindowCollectionBehaviorMoveToActiveSpace is what we want, but it doesn't work correctly, probably because we have a "chicken and egg" problem as the panel isn't visible when the app is hidden
     55        [window setCollectionBehavior: NSWindowCollectionBehaviorCanJoinAllSpaces];
     56        [alarmSetController showWindow: self];
     57        [window performSelector: @selector(setCollectionBehavior:) withObject:
     58         (id)NSWindowCollectionBehaviorDefault afterDelay: 0];
     59        [NSApp activateIgnoringOtherApps: YES]; // XXX causes title bar to flash
     60        return;
     61    }
    5162    [NSApp activateIgnoringOtherApps: YES];
    5263    [alarmSetController showWindow: self];
     
    6879    }
    6980    [preferencesController showWindow: self];
     81}
     82
     83#pragma mark Spaces interaction
     84
     85- (void)orderOutSetAlarmPanelIfHidden;
     86{
     87    // prevent set alarm panel from "yanking" focus from an alarm notification, thereby obscuring the notification
     88    if ([NSApp isActive])
     89        return;
     90   
     91    NSWindow *window = [alarmSetController window];
     92    if (![window isVisible])
     93        return;
     94
     95    [window orderOut: self];
    7096}
    7197
  • trunk/Cocoa/Pester/Source/Pester.xcodeproj/nicholas.mode2v3

    r513 r522  
    198198        <array/>
    199199        <key>OpenEditors</key>
    200         <array/>
     200        <array>
     201                <dict>
     202                        <key>Content</key>
     203                        <dict>
     204                                <key>PBXProjectModuleGUID</key>
     205                                <string>E11EB09F0FCA1730002BC091</string>
     206                                <key>PBXProjectModuleLabel</key>
     207                                <string>Read Me.rtfd</string>
     208                                <key>PBXSplitModuleInNavigatorKey</key>
     209                                <dict>
     210                                        <key>Split0</key>
     211                                        <dict>
     212                                                <key>PBXProjectModuleGUID</key>
     213                                                <string>E11EB0A00FCA1730002BC091</string>
     214                                                <key>PBXProjectModuleLabel</key>
     215                                                <string>Read Me.rtfd</string>
     216                                                <key>_historyCapacity</key>
     217                                                <integer>0</integer>
     218                                                <key>bookmark</key>
     219                                                <string>E123A7320FCA1889005C4B87</string>
     220                                                <key>history</key>
     221                                                <array>
     222                                                        <string>E11EB0A20FCA1730002BC091</string>
     223                                                </array>
     224                                        </dict>
     225                                        <key>SplitCount</key>
     226                                        <string>1</string>
     227                                </dict>
     228                                <key>StatusBarVisibility</key>
     229                                <false/>
     230                        </dict>
     231                        <key>Geometry</key>
     232                        <dict>
     233                                <key>Frame</key>
     234                                <string>{{0, -1}, {999, 1108}}</string>
     235                                <key>PBXModuleWindowStatusBarHidden2</key>
     236                                <true/>
     237                                <key>RubberWindowFrame</key>
     238                                <string>825 15 999 1128 0 0 1920 1178 </string>
     239                        </dict>
     240                </dict>
     241        </array>
    201242        <key>PerspectiveWidths</key>
    202243        <array>
     
    226267                                <dict>
    227268                                        <key>Proportion</key>
    228                                         <string>351pt</string>
     269                                        <string>352pt</string>
    229270                                        <key>Tabs</key>
    230271                                        <array>
     
    247288                                                                        <array>
    248289                                                                                <real>22</real>
    249                                                                                 <real>312</real>
     290                                                                                <real>313</real>
    250291                                                                        </array>
    251292                                                                        <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
     
    263304                                                                                <string>F560E314035787F901A4E466</string>
    264305                                                                                <string>29B97317FDCFA39411CA2CEA</string>
     306                                                                                <string>29B97323FDCFA39411CA2CEA</string>
     307                                                                                <string>1058C7A0FEA54F0111CA2CBB</string>
    265308                                                                                <string>E19DCBE503BE516000B934BF</string>
     309                                                                                <string>E17562BC0CF8E7A800FC5057</string>
    266310                                                                                <string>19C28FACFE9D520D11CA2CBB</string>
    267311                                                                        </array>
     
    269313                                                                        <array>
    270314                                                                                <array>
    271                                                                                         <integer>58</integer>
    272                                                                                         <integer>57</integer>
     315                                                                                        <integer>51</integer>
     316                                                                                        <integer>38</integer>
    273317                                                                                        <integer>0</integer>
    274318                                                                                </array>
    275319                                                                        </array>
    276320                                                                        <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
    277                                                                         <string>{{0, 645}, {334, 441}}</string>
     321                                                                        <string>{{0, 506}, {335, 735}}</string>
    278322                                                                </dict>
    279323                                                                <key>PBXTopSmartGroupGIDs</key>
     
    285329                                                        <dict>
    286330                                                                <key>Frame</key>
    287                                                                 <string>{{10, 27}, {351, 459}}</string>
     331                                                                <string>{{10, 27}, {352, 753}}</string>
    288332                                                                <key>GroupTreeTableConfiguration</key>
    289333                                                                <array>
     
    291335                                                                        <real>22</real>
    292336                                                                        <string>MainColumn</string>
    293                                                                         <real>312</real>
     337                                                                        <real>313</real>
    294338                                                                </array>
    295339                                                                <key>RubberWindowFrame</key>
    296                                                                 <string>1085 346 351 527 0 0 1440 878 </string>
     340                                                                <string>1558 352 352 821 0 0 1920 1178 </string>
    297341                                                        </dict>
    298342                                                        <key>Module</key>
     
    317361                                                                        <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
    318362                                                                        <array>
    319                                                                                 <real>334</real>
     363                                                                                <real>335</real>
    320364                                                                        </array>
    321365                                                                        <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
     
    334378                                                                        <array>
    335379                                                                                <array>
    336                                                                                         <integer>3</integer>
    337                                                                                         <integer>0</integer>
     380                                                                                        <integer>5</integer>
     381                                                                                        <integer>4</integer>
    338382                                                                                </array>
    339383                                                                        </array>
    340384                                                                        <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
    341                                                                         <string>{{0, 0}, {334, 441}}</string>
     385                                                                        <string>{{0, 0}, {335, 735}}</string>
    342386                                                                </dict>
    343387                                                                <key>PBXTopSmartGroupGIDs</key>
     
    349393                                                        <dict>
    350394                                                                <key>Frame</key>
    351                                                                 <string>{{10, 27}, {351, 459}}</string>
     395                                                                <string>{{10, 27}, {352, 753}}</string>
    352396                                                                <key>GroupTreeTableConfiguration</key>
    353397                                                                <array>
    354398                                                                        <string>MainColumn</string>
    355                                                                         <real>334</real>
     399                                                                        <real>335</real>
    356400                                                                </array>
    357401                                                        </dict>
     
    435479                        <key>TableOfContents</key>
    436480                        <array>
    437                                 <string>E11C1C920FC9E123003DD57E</string>
    438                                 <string>E11C1C930FC9E123003DD57E</string>
     481                                <string>E123A7300FCA1889005C4B87</string>
     482                                <string>E123A7310FCA1889005C4B87</string>
    439483                                <string>1C9437FD063B20B00039CFAC</string>
    440484                                <string>1C9437FE063B20B00039CFAC</string>
     
    469513        <key>WindowOrderList</key>
    470514        <array>
    471                 <string>/Users/nicholas/Documents/Development/Pester/Source/Pester.xcodeproj</string>
     515                <string>1C530D54069F1CE1000CFCEE</string>
     516                <string>E11EB09F0FCA1730002BC091</string>
     517                <string>/Users/nicholas/Documents/Development/Pester-SVN/Source/Pester.xcodeproj</string>
     518                <string>1C530D52069F1CE1000CFCEE</string>
    472519        </array>
    473520        <key>WindowString</key>
    474         <string>1085 346 351 527 0 0 1440 878 </string>
     521        <string>1558 352 352 821 0 0 1920 1178 </string>
    475522        <key>WindowToolsV3</key>
    476523        <array>
     
    639686                                                                <string>{{0, 0}, {930, 253}}</string>
    640687                                                                <key>RubberWindowFrame</key>
    641                                                                 <string>324 304 930 535 0 0 1440 878 </string>
     688                                                                <string>629 565 930 535 0 0 1920 1178 </string>
    642689                                                        </dict>
    643690                                                        <key>Module</key>
     
    665712                                                                <string>{{0, 258}, {930, 236}}</string>
    666713                                                                <key>RubberWindowFrame</key>
    667                                                                 <string>324 304 930 535 0 0 1440 878 </string>
     714                                                                <string>629 565 930 535 0 0 1920 1178 </string>
    668715                                                        </dict>
    669716                                                        <key>Module</key>
     
    688735                        <array>
    689736                                <string>1C530D52069F1CE1000CFCEE</string>
    690                                 <string>E17C124E0EF9D2B4002885BE</string>
     737                                <string>E123A7330FCA1889005C4B87</string>
    691738                                <string>1CD0528F0623707200166675</string>
    692739                                <string>XCMainBuildResultsModuleGUID</string>
     
    695742                        <string>xcode.toolbar.config.buildV3</string>
    696743                        <key>WindowString</key>
    697                         <string>324 304 930 535 0 0 1440 878 </string>
     744                        <string>629 565 930 535 0 0 1920 1178 </string>
    698745                        <key>WindowToolGUID</key>
    699746                        <string>1C530D52069F1CE1000CFCEE</string>
    700747                        <key>WindowToolIsVisible</key>
    701                         <false/>
     748                        <true/>
    702749                </dict>
    703750                <dict>
     
    782829                                                                        <string>{{445, 0}, {536, 380}}</string>
    783830                                                                        <key>RubberWindowFrame</key>
    784                                                                         <string>412 77 981 759 0 0 1440 878 </string>
     831                                                                        <string>843 200 981 759 0 0 1920 1178 </string>
    785832                                                                </dict>
    786833                                                                <key>RubberWindowFrame</key>
    787                                                                 <string>412 77 981 759 0 0 1440 878 </string>
     834                                                                <string>843 200 981 759 0 0 1920 1178 </string>
    788835                                                        </dict>
    789836                                                        <key>Module</key>
     
    808855                        <array>
    809856                                <string>1C530D54069F1CE1000CFCEE</string>
    810                                 <string>E17C124F0EF9D2B4002885BE</string>
     857                                <string>E123A7340FCA1889005C4B87</string>
    811858                                <string>1C162984064C10D400B95A72</string>
    812                                 <string>E17C12500EF9D2B4002885BE</string>
    813                                 <string>E17C12510EF9D2B4002885BE</string>
    814                                 <string>E17C12520EF9D2B4002885BE</string>
    815                                 <string>E17C12530EF9D2B4002885BE</string>
    816                                 <string>E17C12540EF9D2B4002885BE</string>
     859                                <string>E123A7350FCA1889005C4B87</string>
     860                                <string>E123A7360FCA1889005C4B87</string>
     861                                <string>E123A7370FCA1889005C4B87</string>
     862                                <string>E123A7380FCA1889005C4B87</string>
     863                                <string>E123A7390FCA1889005C4B87</string>
    817864                        </array>
    818865                        <key>ToolbarConfiguration</key>
    819866                        <string>xcode.toolbar.config.debugV3</string>
    820867                        <key>WindowString</key>
    821                         <string>412 77 981 759 0 0 1440 878 </string>
     868                        <string>843 200 981 759 0 0 1920 1178 </string>
    822869                        <key>WindowToolGUID</key>
    823870                        <string>1C530D54069F1CE1000CFCEE</string>
     
    846893                                                                                <string>1CDD528C0622207200134675</string>
    847894                                                                                <key>PBXProjectModuleLabel</key>
    848                                                                                 <string>&lt;No Editor&gt;</string>
     895                                                                                <string></string>
    849896                                                                                <key>StatusBarVisibility</key>
    850897                                                                                <true/>
     
    904951                        <array>
    905952                                <string>1C530D57069F1CE1000CFCEE</string>
    906                                 <string>E19CC6280CFDF14A0079DCFC</string>
    907                                 <string>E19CC6290CFDF14A0079DCFC</string>
     953                                <string>E123210C0D365E45004865C2</string>
     954                                <string>E123210D0D365E45004865C2</string>
    908955                                <string>1CDD528C0622207200134675</string>
    909956                                <string>1CD0528E0623707200166675</string>
     
    945992                                                                <string>{{0, 0}, {1144, 216}}</string>
    946993                                                                <key>RubberWindowFrame</key>
    947                                                                 <string>258 71 1144 257 0 0 1440 878 </string>
     994                                                                <string>620 98 1144 257 0 0 1920 1178 </string>
    948995                                                        </dict>
    949996                                                        <key>Module</key>
     
    9681015                        <array>
    9691016                                <string>1C530D5B069F1CE1000CFCEE</string>
    970                                 <string>E17C12550EF9D2B4002885BE</string>
     1017                                <string>E11EB0830FC9EB9A002BC091</string>
    9711018                                <string>1C78EAAC065D492600B07095</string>
    9721019                        </array>
     
    9741021                        <string>xcode.toolbar.config.consoleV3</string>
    9751022                        <key>WindowString</key>
    976                         <string>258 71 1144 257 0 0 1440 878 </string>
     1023                        <string>620 98 1144 257 0 0 1920 1178 </string>
    9771024                        <key>WindowToolGUID</key>
    9781025                        <string>1C530D5B069F1CE1000CFCEE</string>
     
    11091156                        <array>
    11101157                                <string>E1B123120CF664D6004975AA</string>
    1111                                 <string>E19CC4EC0CFDDC9A0079DCFC</string>
     1158                                <string>E16E5C730D02639F003C85BE</string>
    11121159                                <string>1C78EAB2065D492600B07095</string>
    11131160                                <string>1CD052920623707200166675</string>
     
    11881235                                                                </array>
    11891236                                                                <key>RubberWindowFrame</key>
    1190                                                                 <string>290 117 744 409 0 0 1920 1178 </string>
     1237                                                                <string>173 112 744 409 0 0 1920 1178 </string>
    11911238                                                        </dict>
    11921239                                                        <key>Module</key>
     
    12101257                                                                <string>{{190, 0}, {554, 368}}</string>
    12111258                                                                <key>RubberWindowFrame</key>
    1212                                                                 <string>290 117 744 409 0 0 1920 1178 </string>
     1259                                                                <string>173 112 744 409 0 0 1920 1178 </string>
    12131260                                                        </dict>
    12141261                                                        <key>Module</key>
     
    12371284                        <key>TableOfContents</key>
    12381285                        <array>
    1239                                 <string>E15043BB0CFCC31200DE47E9</string>
    1240                                 <string>E15043BC0CFCC31200DE47E9</string>
     1286                                <string>E189CE210D0685D500737A02</string>
     1287                                <string>E189CE220D0685D500737A02</string>
    12411288                                <string>1CE0B1FE06471DED0097A5F4</string>
    12421289                                <string>1CA1AED706398EBD00589147</string>
     
    12451292                        <string>xcode.toolbar.config.breakpointsV3</string>
    12461293                        <key>WindowString</key>
    1247                         <string>290 117 744 409 0 0 1920 1178 </string>
     1294                        <string>173 112 744 409 0 0 1920 1178 </string>
    12481295                        <key>WindowToolGUID</key>
    1249                         <string>E15043BB0CFCC31200DE47E9</string>
     1296                        <string>E189CE210D0685D500737A02</string>
    12501297                        <key>WindowToolIsVisible</key>
    12511298                        <false/>
  • trunk/Cocoa/Pester/Source/Pester.xcodeproj/nicholas.pbxuser

    r513 r522  
    33        089C165DFE840E0CC02AAC07 /* English */ = {
    44                uiCtxt = {
    5                         sepNavIntBoundsRect = "{{0, 0}, {813, 838}}";
    6                         sepNavSelRange = "{156, 0}";
     5                        sepNavIntBoundsRect = "{{0, 0}, {813, 899}}";
     6                        sepNavSelRange = "{145, 0}";
    77                        sepNavVisRange = "{0, 229}";
    8                         sepNavWindowFrame = "{{15, 4}, {872, 874}}";
     8                        sepNavWindowFrame = "{{15, 238}, {872, 935}}";
    99                };
    1010        };
     
    1414                activeTarget = E1B11EE30CF5F30F004975AA /* Pester */;
    1515                addToTargets = (
    16                         E19CC5210CFDE3350079DCFC /* ParseDate-10.4 */,
    1716                );
    1817                breakpoints = (
     
    2221                        E17CA6640CF697FE00018B34 /* SetPortRGBForeColor */,
    2322                        E15043CF0CFCC41500DE47E9 /* objc_exception_throw */,
     23                        E189CE180D0685CB00737A02 /* -[NSObject didChangeValueForKey:] */,
    2424                );
    2525                codeSenseManager = E1B11EDD0CF5F2EB004975AA /* Code sense */;
     
    7474                                );
    7575                        };
    76                         PBXPerProjectTemplateStateSaveDate = 264888602;
     76                        PBXPerProjectTemplateStateSaveDate = 264902787;
    7777                        "PBXTemplateGeometry-F5314676015831810DCA290F" = {
    7878                                ContentSize = "{618, 257}";
     
    793793                                },
    794794                        );
    795                         PBXWorkspaceStateSaveDate = 264888602;
     795                        PBXWorkspaceStateSaveDate = 264902787;
    796796                };
    797797                perUserProjectItems = {
    798                         E17C12440EF9CEE0002885BE = E17C12440EF9CEE0002885BE /* PBXBookmark */;
    799                         E17C125E0EF9D4AD002885BE = E17C125E0EF9D4AD002885BE /* PBXTextBookmark */;
     798                        E11EB0A10FCA1730002BC091 = E11EB0A10FCA1730002BC091 /* PBXBookmark */;
     799                        E11EB0A20FCA1730002BC091 = E11EB0A20FCA1730002BC091 /* PBXTextBookmark */;
     800                        E123A7320FCA1889005C4B87 /* PBXTextBookmark */ = E123A7320FCA1889005C4B87 /* PBXTextBookmark */;
    800801                };
    801802                sourceControlManager = E1B11EDC0CF5F2EB004975AA /* Source Control */;
     
    844845                vrLen = 1001;
    845846                vrLoc = 30;
     847        };
     848        E11DC3FF0D0A9A6D00CE8CCD /* NSWindowCollectionBehavior.h */ = {
     849                uiCtxt = {
     850                        sepNavIntBoundsRect = "{{0, 0}, {973, 1035}}";
     851                        sepNavSelRange = "{233, 42}";
     852                        sepNavVisRange = "{0, 514}";
     853                        sepNavWindowFrame = "{{15, 102}, {1032, 1071}}";
     854                };
     855        };
     856        E11EB0A10FCA1730002BC091 /* PBXBookmark */ = {
     857                isa = PBXBookmark;
     858                fRef = F589C9C6035AA12B0155F4B2 /* Read Me.rtfd */;
     859        };
     860        E11EB0A20FCA1730002BC091 /* PBXTextBookmark */ = {
     861                isa = PBXTextBookmark;
     862                fRef = F589C9C6035AA12B0155F4B2 /* Read Me.rtfd */;
     863                name = "Read Me.rtfd: 111";
     864                rLen = 0;
     865                rLoc = 8929;
     866                rType = 0;
     867                vrLen = 5087;
     868                vrLoc = 5784;
     869        };
     870        E123A7320FCA1889005C4B87 /* PBXTextBookmark */ = {
     871                isa = PBXTextBookmark;
     872                fRef = F589C9C6035AA12B0155F4B2 /* Read Me.rtfd */;
     873                name = "Read Me.rtfd: 111";
     874                rLen = 0;
     875                rLoc = 8929;
     876                rType = 0;
     877                vrLen = 5087;
     878                vrLoc = 5784;
    846879        };
    847880        E130B91603B69C6300000028 /* PBXBookmarkGroup */ = {
     
    881914        E13919E303B9E4E100000028 /* NJRIntervalField.m */ = {
    882915                uiCtxt = {
    883                         sepNavIntBoundsRect = "{{0, 0}, {761, 1190}}";
    884                         sepNavSelRange = "{1198, 0}";
    885                         sepNavVisRange = "{655, 2028}";
    886                         sepNavWindowFrame = "{{364, 39}, {820, 839}}";
     916                        sepNavIntBoundsRect = "{{0, 0}, {761, 946}}";
     917                        sepNavSelRange = "{2674, 0}";
     918                        sepNavVisRange = "{329, 2345}";
     919                        sepNavWindowFrame = "{{364, 159}, {820, 839}}";
    887920                };
    888921        };
     
    903936                countType = 0;
    904937                delayBeforeContinue = 0;
    905                 hitCount = 1;
     938                hitCount = 0;
    906939                ignoreCount = 0;
    907940                location = libobjc.A.dylib;
    908                 modificationTime = 217892071.677906;
    909                 state = 2;
     941                modificationTime = 218532071.607517;
     942                state = 1;
    910943                symbolName = objc_exception_throw;
    911944        };
     
    919952        E15044660CFCDC7E00DE47E9 /* NJRValidatingField.m */ = {
    920953                uiCtxt = {
    921                         sepNavIntBoundsRect = "{{0, 0}, {775, 1122}}";
    922                         sepNavSelRange = "{0, 0}";
    923                         sepNavVisRange = "{0, 4696}";
     954                        sepNavIntBoundsRect = "{{0, 0}, {775, 1144}}";
     955                        sepNavSelRange = "{0, 0}";
     956                        sepNavVisRange = "{0, 4814}";
    924957                        sepNavWindowFrame = "{{15, 49}, {834, 1124}}";
    925958                };
     
    940973                };
    941974        };
     975        E162698A03B6190B00000028 /* NSCalendarDate-NJRExtensions.m */ = {
     976                uiCtxt = {
     977                        sepNavIntBoundsRect = "{{0, 0}, {1091, 1018}}";
     978                        sepNavSelRange = "{0, 0}";
     979                        sepNavVisRange = "{0, 1650}";
     980                        sepNavWindowFrame = "{{38, 98}, {1150, 1054}}";
     981                };
     982        };
    942983        E16959290437A4A400050002 /* NSFont-NJRExtensions.h */ = {
    943984                uiCtxt = {
     
    957998        E17562BD0CF8E7D000FC5057 /* updates.xml */ = {
    958999                uiCtxt = {
    959                         sepNavIntBoundsRect = "{{0, 0}, {817, 583}}";
     1000                        sepNavIntBoundsRect = "{{0, 0}, {736, 888}}";
    9601001                        sepNavSelRange = "{1735, 2}";
    961                         sepNavVisRange = "{0, 1080}";
     1002                        sepNavVisRange = "{0, 2713}";
    9621003                        sepNavWindowFrame = "{{15, 249}, {795, 924}}";
    9631004                };
     
    9651006        E17562BE0CF8E7D000FC5057 /* release-notes.html */ = {
    9661007                uiCtxt = {
    967                         sepNavIntBoundsRect = "{{0, 0}, {993, 897}}";
    968                         sepNavSelRange = "{1369, 0}";
    969                         sepNavVisRange = "{0, 1369}";
    970                         sepNavWindowFrame = "{{638, 86}, {1052, 933}}";
     1008                        sepNavIntBoundsRect = "{{0, 0}, {838, 895}}";
     1009                        sepNavSelRange = "{586, 0}";
     1010                        sepNavVisRange = "{0, 1932}";
     1011                        sepNavWindowFrame = "{{725, 36}, {897, 931}}";
    9711012                };
    9721013        };
     
    9781019                        sepNavWindowFrame = "{{368, 43}, {1032, 1071}}";
    9791020                };
    980         };
    981         E17C12440EF9CEE0002885BE /* PBXBookmark */ = {
    982                 isa = PBXBookmark;
    983                 fRef = E13919E303B9E4E100000028 /* NJRIntervalField.m */;
    984         };
    985         E17C125E0EF9D4AD002885BE /* PBXTextBookmark */ = {
    986                 isa = PBXTextBookmark;
    987                 fRef = E13919E303B9E4E100000028 /* NJRIntervalField.m */;
    988                 name = "NJRIntervalField.m: 42";
    989                 rLen = 0;
    990                 rLoc = 1198;
    991                 rType = 0;
    992                 vrLen = 2028;
    993                 vrLoc = 655;
    9941021        };
    9951022        E17CA6640CF697FE00018B34 /* SetPortRGBForeColor */ = {
     
    10041031                ignoreCount = 0;
    10051032                location = "";
    1006                 modificationTime = 217892051.042254;
     1033                modificationTime = 218532071.607028;
    10071034                state = 2;
    10081035                symbolName = SetPortRGBForeColor;
     
    10141041                        sepNavVisRange = "{6628, 252}";
    10151042                };
     1043        };
     1044        E189CE180D0685CB00737A02 /* -[NSObject didChangeValueForKey:] */ = {
     1045                isa = PBXSymbolicBreakpoint;
     1046                actions = (
     1047                );
     1048                breakpointStyle = 1;
     1049                continueAfterActions = 0;
     1050                countType = 0;
     1051                delayBeforeContinue = 0;
     1052                hitCount = 0;
     1053                ignoreCount = 0;
     1054                location = Foundation;
     1055                modificationTime = 218532071.60805;
     1056                state = 2;
     1057                symbolName = "-[NSObject didChangeValueForKey:]";
    10161058        };
    10171059        E18DA4090442C56D00050002 /* PSMediaAlert.m */ = {
     
    10731115        E1A18CAC03B4344C00000028 /* PSAlerts.m */ = {
    10741116                uiCtxt = {
    1075                         sepNavIntBoundsRect = "{{0, 0}, {817, 1518}}";
    1076                         sepNavSelRange = "{3864, 7}";
    1077                         sepNavVisRange = "{3555, 463}";
     1117                        sepNavIntBoundsRect = "{{0, 0}, {817, 1562}}";
     1118                        sepNavSelRange = "{1960, 0}";
     1119                        sepNavVisRange = "{1738, 1001}";
    10781120                        sepNavWindowFrame = "{{528, 47}, {889, 698}}";
    10791121                };
     
    10901132                ignoreCount = 0;
    10911133                location = "";
    1092                 modificationTime = 217892051.041767;
     1134                modificationTime = 218532071.606409;
    10931135                state = 2;
    10941136                symbolName = "-[_NSZombie release]";
     
    11521194                environmentEntries = (
    11531195                        {
    1154                                 active = NO;
     1196                                active = YES;
    11551197                                name = NSZombieEnabled;
    11561198                                value = YES;
     
    11881230                };
    11891231        };
     1232        E1B46FE904057E3400050002 /* NJRSplitView.m */ = {
     1233                uiCtxt = {
     1234                        sepNavIntBoundsRect = "{{0, 0}, {797, 1078}}";
     1235                        sepNavSelRange = "{0, 0}";
     1236                        sepNavVisRange = "{0, 3256}";
     1237                        sepNavWindowFrame = "{{15, 258}, {856, 915}}";
     1238                };
     1239        };
    11901240        E1BF6E9103C928D200050002 /* PSTimer.m */ = {
    11911241                uiCtxt = {
     
    12121262                };
    12131263        };
     1264        E1D358BA03C60CE900C8A18E /* NJRCenteringMovieView.m */ = {
     1265                uiCtxt = {
     1266                        sepNavIntBoundsRect = "{{0, 0}, {973, 1035}}";
     1267                        sepNavSelRange = "{0, 0}";
     1268                        sepNavVisRange = "{0, 1883}";
     1269                        sepNavWindowFrame = "{{15, 102}, {1032, 1071}}";
     1270                };
     1271        };
    12141272        E1DEF10203FF816300050002 /* PSSnoozeUntilController.h */ = {
    12151273                uiCtxt = {
     
    12361294        E1DEF117040014EB00050002 /* PSTimeDateEditor.m */ = {
    12371295                uiCtxt = {
    1238                         sepNavIntBoundsRect = "{{0, 0}, {830, 671}}";
    1239                         sepNavSelRange = "{512, 0}";
    1240                         sepNavVisRange = "{0, 2238}";
     1296                        sepNavIntBoundsRect = "{{0, 0}, {830, 693}}";
     1297                        sepNavSelRange = "{2339, 0}";
     1298                        sepNavVisRange = "{26, 2385}";
    12411299                        sepNavWindowFrame = "{{102, 123}, {889, 698}}";
    12421300                };
     
    12501308                };
    12511309        };
     1310        E1F0B14B03AD8CEF00AEFBE0 /* NJRUnfocusableMovieView.m */ = {
     1311                uiCtxt = {
     1312                        sepNavIntBoundsRect = "{{0, 0}, {973, 1035}}";
     1313                        sepNavSelRange = "{0, 0}";
     1314                        sepNavVisRange = "{0, 296}";
     1315                        sepNavWindowFrame = "{{38, 81}, {1032, 1071}}";
     1316                };
     1317        };
    12521318        E1F0B14F03ADBE3800AEFBE0 /* NSString-NJRExtensions.m */ = {
    12531319                uiCtxt = {
     
    12561322                        sepNavVisRange = "{0, 3838}";
    12571323                        sepNavWindowFrame = "{{15, 44}, {999, 1129}}";
     1324                };
     1325        };
     1326        E1F0B26903AEDE8600AEFBE0 /* NSAttributedString-NJRExtensions.m */ = {
     1327                uiCtxt = {
     1328                        sepNavIntBoundsRect = "{{0, 0}, {1091, 1018}}";
     1329                        sepNavSelRange = "{0, 0}";
     1330                        sepNavVisRange = "{0, 969}";
     1331                        sepNavWindowFrame = "{{15, 119}, {1150, 1054}}";
    12581332                };
    12591333        };
     
    12661340                };
    12671341        };
     1342        E1F993C60436310F00050002 /* PSPreferencesController.h */ = {
     1343                uiCtxt = {
     1344                        sepNavIntBoundsRect = "{{0, 0}, {817, 286}}";
     1345                        sepNavSelRange = "{527, 9}";
     1346                        sepNavVisRange = "{157, 401}";
     1347                };
     1348        };
    12681349        E1F993C70436310F00050002 /* PSPreferencesController.m */ = {
    12691350                uiCtxt = {
    1270                         sepNavIntBoundsRect = "{{0, 0}, {817, 1694}}";
    1271                         sepNavSelRange = "{2514, 11}";
    1272                         sepNavVisRange = "{1964, 940}";
    1273                         sepNavWindowFrame = "{{222, 286}, {889, 698}}";
     1351                        sepNavIntBoundsRect = "{{0, 0}, {973, 1672}}";
     1352                        sepNavSelRange = "{4153, 46}";
     1353                        sepNavVisRange = "{0, 3793}";
     1354                        sepNavWindowFrame = "{{38, 81}, {1032, 1071}}";
    12741355                };
    12751356        };
     
    13151396                ignoreCount = 0;
    13161397                location = libSystem.B.dylib;
    1317                 modificationTime = 217892051.041262;
     1398                modificationTime = 218532071.595148;
    13181399                state = 2;
    13191400                symbolName = szone_error;
     
    13291410        F517D63F0356B80C016D68B9 /* PSAlarmsController.h */ = {
    13301411                uiCtxt = {
    1331                         sepNavIntBoundsRect = "{{0, 0}, {830, 639}}";
     1412                        sepNavIntBoundsRect = "{{0, 0}, {838, 872}}";
    13321413                        sepNavSelRange = "{0, 0}";
    13331414                        sepNavVisRange = "{0, 460}";
     1415                        sepNavWindowFrame = "{{130, 137}, {897, 931}}";
    13341416                };
    13351417        };
    13361418        F517D6420356B8CC016D68B9 /* PSAlarms.m */ = {
    13371419                uiCtxt = {
    1338                         sepNavIntBoundsRect = "{{0, 0}, {761, 3737}}";
     1420                        sepNavIntBoundsRect = "{{0, 0}, {761, 3784}}";
    13391421                        sepNavSelRange = "{9736, 0}";
    1340                         sepNavVisRange = "{7626, 2401}";
     1422                        sepNavVisRange = "{7054, 2429}";
    13411423                        sepNavWindowFrame = "{{938, 170}, {820, 839}}";
    13421424                };
     
    13491431                };
    13501432        };
     1433        F552A8AC0358E8B201AEEDB1 /* NJRScrollView.m */ = {
     1434                uiCtxt = {
     1435                        sepNavIntBoundsRect = "{{0, 0}, {797, 879}}";
     1436                        sepNavSelRange = "{0, 0}";
     1437                        sepNavVisRange = "{0, 934}";
     1438                        sepNavWindowFrame = "{{38, 237}, {856, 915}}";
     1439                };
     1440        };
    13511441        F560E2F10357506401A4E466 /* PSApplication.m */ = {
    13521442                uiCtxt = {
    1353                         sepNavIntBoundsRect = "{{0, 0}, {761, 3014}}";
    1354                         sepNavSelRange = "{0, 0}";
    1355                         sepNavVisRange = "{0, 1956}";
    1356                         sepNavWindowFrame = "{{586, 75}, {820, 839}}";
     1443                        sepNavIntBoundsRect = "{{0, 0}, {817, 3179}}";
     1444                        sepNavSelRange = "{2208, 25}";
     1445                        sepNavVisRange = "{1859, 666}";
     1446                        sepNavWindowFrame = "{{151, 44}, {820, 839}}";
     1447                };
     1448        };
     1449        F560E2F20357506401A4E466 /* PSApplication.h */ = {
     1450                uiCtxt = {
     1451                        sepNavIntBoundsRect = "{{0, 0}, {761, 780}}";
     1452                        sepNavSelRange = "{794, 0}";
     1453                        sepNavVisRange = "{0, 800}";
    13571454                };
    13581455        };
     
    13661463        F560E3160357895001A4E466 /* NJRHistoryTrackingComboBox.m */ = {
    13671464                uiCtxt = {
    1368                         sepNavIntBoundsRect = "{{0, 0}, {817, 858}}";
    1369                         sepNavSelRange = "{1238, 11}";
    1370                         sepNavVisRange = "{591, 1028}";
    1371                         sepNavWindowFrame = "{{548, 60}, {820, 839}}";
     1465                        sepNavIntBoundsRect = "{{0, 0}, {761, 950}}";
     1466                        sepNavSelRange = "{1800, 0}";
     1467                        sepNavVisRange = "{0, 2217}";
     1468                        sepNavWindowFrame = "{{127, 100}, {820, 839}}";
    13721469                };
    13731470        };
    13741471        F589C9C6035AA12B0155F4B2 /* Read Me.rtfd */ = {
    13751472                uiCtxt = {
    1376                         sepNavIntBoundsRect = "{{0, 0}, {960, 4408}}";
    1377                         sepNavSelRange = "{0, 0}";
    1378                         sepNavVisRect = "{{0, 0}, {960, 814}}";
    1379                         sepNavWindowFrame = "{{14, 4}, {999, 874}}";
     1473                        sepNavIntBoundsRect = "{{0, 0}, {960, 4391}}";
     1474                        sepNavSelRange = "{8929, 0}";
     1475                        sepNavVisRect = "{{0, 2692}, {960, 1091}}";
     1476                        sepNavWindowFrame = "{{825, 15}, {999, 1128}}";
    13801477                };
    13811478        };
     
    13911488                ignoreCount = 0;
    13921489                location = "";
    1393                 modificationTime = 217892051.040556;
     1490                modificationTime = 218532071.594549;
    13941491                state = 2;
    13951492                symbolName = "-[_NSZombie methodSignatureForSelector:]";
     
    13981495                uiCtxt = {
    13991496                        sepNavIntBoundsRect = "{{0, 0}, {775, 1065}}";
    1400                         sepNavSelRange = "{1563, 0}";
    1401                         sepNavVisRange = "{0, 2381}";
    1402                         sepNavWindowFrame = "{{23, 50}, {999, 1128}}";
     1497                        sepNavSelRange = "{1756, 0}";
     1498                        sepNavVisRange = "{0, 2385}";
     1499                        sepNavWindowFrame = "{{561, 54}, {834, 1124}}";
    14031500                };
    14041501        };
    14051502        F59DC6D40353C9E601AEEDB1 /* PSAlarmSetController.m */ = {
    14061503                uiCtxt = {
    1407                         sepNavIntBoundsRect = "{{0, 0}, {817, 7084}}";
    1408                         sepNavSelRange = "{17033, 2}";
    1409                         sepNavVisRange = "{16461, 1025}";
     1504                        sepNavIntBoundsRect = "{{0, 0}, {775, 7056}}";
     1505                        sepNavSelRange = "{22489, 33}";
     1506                        sepNavVisRange = "{20445, 3362}";
    14101507                        sepNavWindowFrame = "{{561, 54}, {834, 1124}}";
    14111508                };
    14121509        };
     1510        F59DC6DB0353DE5101AEEDB1 /* PSAlarmNotifierController.h */ = {
     1511                uiCtxt = {
     1512                        sepNavIntBoundsRect = "{{0, 0}, {761, 780}}";
     1513                        sepNavSelRange = "{0, 0}";
     1514                        sepNavVisRange = "{0, 1084}";
     1515                };
     1516        };
    14131517        F59DC6DC0353DE5101AEEDB1 /* PSAlarmNotifierController.m */ = {
    14141518                uiCtxt = {
    1415                         sepNavIntBoundsRect = "{{0, 0}, {761, 2288}}";
    1416                         sepNavSelRange = "{3406, 0}";
    1417                         sepNavVisRange = "{2791, 2021}";
    1418                         sepNavWindowFrame = "{{613, 82}, {820, 839}}";
     1519                        sepNavIntBoundsRect = "{{0, 0}, {761, 2211}}";
     1520                        sepNavSelRange = "{282, 0}";
     1521                        sepNavVisRange = "{3, 2342}";
     1522                        sepNavWindowFrame = "{{781, 53}, {820, 839}}";
    14191523                };
    14201524        };
     
    14661570                uiCtxt = {
    14671571                        sepNavIntBoundsRect = "{{0, 0}, {1297, 781}}";
    1468                         sepNavSelRange = "{1311, 0}";
    1469                         sepNavVisRange = "{0, 1940}";
    1470                         sepNavWindowFrame = "{{360, 78}, {1356, 780}}";
     1572                        sepNavSelRange = "{199, 35}";
     1573                        sepNavVisRange = "{32, 1936}";
     1574                        sepNavWindowFrame = "{{490, 398}, {1356, 780}}";
    14711575                };
    14721576        };
     
    14901594                uiCtxt = {
    14911595                        sepNavIntBoundsRect = "{{0, 0}, {813, 1045}}";
    1492                         sepNavSelRange = "{1054, 0}";
    1493                         sepNavVisRange = "{318, 3020}";
     1596                        sepNavSelRange = "{2807, 25}";
     1597                        sepNavVisRange = "{319, 3019}";
    14941598                        sepNavWindowFrame = "{{38, 217}, {872, 935}}";
    14951599                };
     
    14971601        F59E47B5036AAD55016B311C /* PSAlarmAlertController.h */ = {
    14981602                uiCtxt = {
    1499                         sepNavIntBoundsRect = "{{0, 0}, {817, 307}}";
    1500                         sepNavSelRange = "{0, 0}";
     1603                        sepNavIntBoundsRect = "{{0, 0}, {973, 1012}}";
     1604                        sepNavSelRange = "{518, 10}";
    15011605                        sepNavVisRange = "{0, 586}";
     1606                        sepNavWindowFrame = "{{38, 81}, {1032, 1071}}";
    15021607                };
    15031608        };
    15041609        F59E47B8036AB217016B311C /* PSDockBounceAlert.m */ = {
    15051610                uiCtxt = {
     1611                        sepNavIntBoundsRect = "{{0, 0}, {761, 803}}";
     1612                        sepNavSelRange = "{627, 0}";
     1613                        sepNavVisRange = "{0, 1356}";
     1614                        sepNavWindowFrame = "{{1034, 76}, {820, 839}}";
     1615                };
     1616        };
     1617        F59E47B9036AB217016B311C /* PSDockBounceAlert.h */ = {
     1618                uiCtxt = {
    15061619                        sepNavIntBoundsRect = "{{0, 0}, {761, 780}}";
    1507                         sepNavSelRange = "{665, 0}";
    1508                         sepNavVisRange = "{0, 1282}";
    1509                         sepNavWindowFrame = "{{130, 229}, {820, 839}}";
     1620                        sepNavSelRange = "{0, 0}";
     1621                        sepNavVisRange = "{0, 227}";
    15101622                };
    15111623        };
     
    15511663        F59F6CB50354E7DA01AEEDB1 /* PSAlarm.m */ = {
    15521664                uiCtxt = {
    1553                         sepNavIntBoundsRect = "{{0, 0}, {993, 8344}}";
     1665                        sepNavIntBoundsRect = "{{0, 0}, {993, 6743}}";
    15541666                        sepNavSelRange = "{7368, 0}";
    1555                         sepNavVisRange = "{7123, 1405}";
    1556                         sepNavWindowFrame = "{{375, 4}, {1052, 874}}";
     1667                        sepNavVisRange = "{7123, 1965}";
     1668                        sepNavWindowFrame = "{{840, 106}, {1052, 933}}";
    15571669                };
    15581670        };
    15591671        F5B79836035F64F80136A8DD /* NJRTableView.m */ = {
    15601672                uiCtxt = {
    1561                         sepNavIntBoundsRect = "{{0, 0}, {993, 1210}}";
     1673                        sepNavIntBoundsRect = "{{0, 0}, {797, 1175}}";
    15621674                        sepNavSelRange = "{899, 0}";
    1563                         sepNavVisRange = "{0, 2747}";
     1675                        sepNavVisRange = "{0, 2551}";
     1676                        sepNavWindowFrame = "{{61, 216}, {856, 915}}";
    15641677                };
    15651678        };
     
    15741687        F5F1986C036B813101EB0372 /* PSSpeechAlert.m */ = {
    15751688                uiCtxt = {
    1576                         sepNavIntBoundsRect = "{{0, 0}, {993, 1078}}";
     1689                        sepNavIntBoundsRect = "{{0, 0}, {993, 1100}}";
    15771690                        sepNavSelRange = "{1168, 0}";
    1578                         sepNavVisRange = "{335, 2245}";
     1691                        sepNavVisRange = "{421, 2204}";
    15791692                        sepNavWindowFrame = "{{454, 61}, {1052, 933}}";
    15801693                };
     
    15891702        F5F19870036B822E01EB0372 /* NJRVoicePopUpButton.m */ = {
    15901703                uiCtxt = {
    1591                         sepNavIntBoundsRect = "{{0, 0}, {830, 1441}}";
     1704                        sepNavIntBoundsRect = "{{0, 0}, {830, 1507}}";
    15921705                        sepNavSelRange = "{976, 0}";
    1593                         sepNavVisRange = "{0, 1846}";
     1706                        sepNavVisRange = "{2166, 1553}";
    15941707                        sepNavWindowFrame = "{{981, 73}, {889, 698}}";
    15951708                };
     
    16041717        F5F198D0036BE57401EB0372 /* NJRTableDelegate.m */ = {
    16051718                uiCtxt = {
    1606                         sepNavIntBoundsRect = "{{0, 0}, {993, 2970}}";
    1607                         sepNavSelRange = "{8161, 0}";
    1608                         sepNavVisRange = "{6950, 2655}";
     1719                        sepNavIntBoundsRect = "{{0, 0}, {993, 3212}}";
     1720                        sepNavSelRange = "{1417, 20}";
     1721                        sepNavVisRange = "{90, 2074}";
    16091722                        sepNavWindowFrame = "{{236, 118}, {1052, 933}}";
    16101723                };
     
    16351748        F5F240CC036A877301FE7503 /* NJRQTMediaPopUpButton.m */ = {
    16361749                uiCtxt = {
    1637                         sepNavIntBoundsRect = "{{0, 0}, {940, 7022}}";
    1638                         sepNavSelRange = "{1783, 11}";
    1639                         sepNavVisRange = "{159, 3769}";
     1750                        sepNavIntBoundsRect = "{{0, 0}, {940, 5260}}";
     1751                        sepNavSelRange = "{864, 0}";
     1752                        sepNavVisRange = "{0, 3555}";
    16401753                        sepNavWindowFrame = "{{14, 50}, {999, 1128}}";
    16411754                };
  • trunk/Cocoa/Pester/Source/Pester.xcodeproj/project.pbxproj

    r513 r522  
    170170                E11373150439FCC700050002 /* NJRHotKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NJRHotKey.m; sourceTree = "<group>"; };
    171171                E11CB6E1043025F500050002 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/Preferences.nib; sourceTree = "<group>"; };
     172                E11DC3FF0D0A9A6D00CE8CCD /* NSWindowCollectionBehavior.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSWindowCollectionBehavior.h; sourceTree = "<group>"; };
    172173                E127900104429F9300050002 /* Volume 2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Volume 2.png"; sourceTree = "<group>"; };
    173174                E127900204429F9300050002 /* Volume 0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Volume 0.png"; sourceTree = "<group>"; };
     
    498499                                E1B121950CF62FD1004975AA /* NSMenuItem-NJRExtensions.h */,
    499500                                E1B121960CF62FD1004975AA /* NSMenuItem-NJRExtensions.m */,
     501                                E11DC3FF0D0A9A6D00CE8CCD /* NSWindowCollectionBehavior.h */,
    500502                        );
    501503                        name = Categories;
Note: See TracChangeset for help on using the changeset viewer.