mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Instead we access it when either we need to submit a crash report, when the preferences window open (where the contact address is shown), or when creating a new bundle (where email is also used for the bundle’s contact).
12 lines
417 B
Objective-C
12 lines
417 B
Objective-C
#include <oak/misc.h>
|
|
|
|
PUBLIC extern NSString* const kUserDefaultsDisableCrashReportingKey;
|
|
PUBLIC extern NSString* const kUserDefaultsCrashReportsContactInfoKey;
|
|
|
|
PUBLIC @interface CrashReporter : NSObject
|
|
+ (CrashReporter*)sharedInstance;
|
|
- (void)setupUserDefaultsContact:(id)sender;
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)aNotification;
|
|
- (void)postNewCrashReportsToURLString:(NSString*)aURL;
|
|
@end
|