1.1 --- a/Core/Source/DisplayPluginsWithDefaultArrayController.m Tue Apr 07 11:34:52 2009 -0700
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,32 +0,0 @@
1.4 -//
1.5 -// DisplayPluginsWithDefaultArrayController.m
1.6 -// Growl
1.7 -//
1.8 -// Created by Evan Schoenberg on 8/18/07.
1.9 -//
1.10 -
1.11 -#import "DisplayPluginsWithDefaultArrayController.h"
1.12 -
1.13 -@implementation DisplayPluginsWithDefaultArrayController
1.14 -
1.15 -- (NSArray *)arrangedObjects
1.16 -{
1.17 - NSMutableArray *arrangedObjects = [[[super arrangedObjects] mutableCopy] autorelease];
1.18 -
1.19 - //Add a null name/identifier pair. DisplayPluginNameWithDefaultTransformer can turn this into appropriate display as needed
1.20 - [arrangedObjects insertObject:[NSDictionary dictionaryWithObjectsAndKeys:
1.21 - [NSNull null], @"CFBundleName",
1.22 - [NSNull null], @"CFBundleIdentifier",
1.23 - nil]
1.24 - atIndex:0U];
1.25 -
1.26 - [arrangedObjects insertObject:[NSDictionary dictionaryWithObjectsAndKeys:
1.27 - @"-", @"CFBundleName",
1.28 - @"-", @"CFBundleIdentifier",
1.29 - nil]
1.30 - atIndex:1U];
1.31 -
1.32 - return arrangedObjects;
1.33 -}
1.34 -
1.35 -@end