Fixed a segfault crash that would occur if you stepped at the end of a script
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SUWindowController.h
1 //
2 // SUWindowController.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 2/13/08.
6 // Copyright 2008 Andy Matuschak. All rights reserved.
7 //
8
9 #ifndef SUWINDOWCONTROLLER_H
10 #define SUWINDOWCONTROLLER_H
11
12 #import <Cocoa/Cocoa.h>
13
14 @interface SUWindowController : NSWindowController { }
15 // We use this instead of plain old NSWindowController initWithWindowNibName so that we'll be able to find the right path when running in a bundle loaded from another app.
16 - (id)initWithHostBundle:(NSBundle *)hb windowNibName:(NSString *)nibName;
17 @end
18
19 #endif