Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITCategory-NSApplication.m
1 #import "ITCategory-NSApplication.h"
2
3 @implementation NSApplication (ITKitCategory)
4
5 - (NSString *)applicationName {
6         NSString *applicationName;
7         if (!(applicationName = [[[NSBundle mainBundle] localizedInfoDictionary] objectForKey:(NSString *)kCFBundleNameKey])) {
8                 applicationName = [[NSProcessInfo processInfo] processName];
9         }
10         return applicationName;
11 }
12
13 @end