mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 13:47:54 -05:00
13 lines
276 B
Objective-C
13 lines
276 B
Objective-C
#include <oak/debug.h>
|
|
|
|
@interface ReleaseNotesWindowController : NSWindowController
|
|
{
|
|
OBJC_WATCH_LEAKS(ReleaseNotesWindowController);
|
|
|
|
IBOutlet WebView* webView;
|
|
NSURL* releaseNotesURL;
|
|
}
|
|
+ (void)showPath:(NSString*)aPath;
|
|
+ (void)showPathIfUpdated:(NSString*)aPath;
|
|
@end
|