mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
This is both to remind the user that crash reports are automatically submitted and to make it easy for them to point us to a specific crash, as notification center will now work as a list of recent crashes; click on one of them to see the online version.
11 lines
372 B
Objective-C
11 lines
372 B
Objective-C
#include <oak/misc.h>
|
|
|
|
PUBLIC extern NSString* const kUserDefaultsDisableCrashReportingKey;
|
|
PUBLIC extern NSString* const kUserDefaultsCrashReportsContactInfoKey;
|
|
|
|
PUBLIC @interface CrashReporter : NSObject
|
|
+ (CrashReporter*)sharedInstance;
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)aNotification;
|
|
- (void)postNewCrashReportsToURLString:(NSString*)aURL;
|
|
@end
|