diff options
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWSheetControllerIntegration.m')
-rw-r--r-- | Frameworks/BWToolkitFramework.framework/BWSheetControllerIntegration.m | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWSheetControllerIntegration.m b/Frameworks/BWToolkitFramework.framework/BWSheetControllerIntegration.m new file mode 100644 index 00000000..c71d7112 --- /dev/null +++ b/Frameworks/BWToolkitFramework.framework/BWSheetControllerIntegration.m @@ -0,0 +1,23 @@ +// +// BWSheetControllerIntegration.m +// BWToolkit +// +// Created by Brandon Walkin (www.brandonwalkin.com) +// All code is provided under the New BSD license. +// + +#import <InterfaceBuilderKit/InterfaceBuilderKit.h> +#import "BWSheetController.h" + +@implementation BWSheetController ( BWSheetControllerIntegration ) + +- (NSImage *)ibDefaultImage +{ + NSBundle *bundle = [NSBundle bundleForClass:[BWSheetController class]]; + + NSImage *image = [[[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"Library-SheetController.tif"]] autorelease]; + + return image; +} + +@end |