From 16a73d941db960619b8e72f7c270186e40df56f5 Mon Sep 17 00:00:00 2001 From: Patrick Stein Date: Tue, 4 Jan 2011 20:53:03 +0100 Subject: [PATCH] moved defines for bundle keys to header file, so people see the bundle keys to use without looking at the source --- Cocoa/CrashReporter/JNXCrashReporter.h | 2 ++ Cocoa/CrashReporter/JNXCrashReporter.m | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cocoa/CrashReporter/JNXCrashReporter.h b/Cocoa/CrashReporter/JNXCrashReporter.h index 1c9a992..59415e8 100644 --- a/Cocoa/CrashReporter/JNXCrashReporter.h +++ b/Cocoa/CrashReporter/JNXCrashReporter.h @@ -8,6 +8,8 @@ #import +#define JNX_CRASHREPORTER_SUBJECTKEY @"JNXCrashReporter.subject" +#define JNX_CRASHREPORTER_MAILTOKEY @"JNXCrashReporter.mailto" @interface JNXCrashReporter : NSObject { diff --git a/Cocoa/CrashReporter/JNXCrashReporter.m b/Cocoa/CrashReporter/JNXCrashReporter.m index 7bd378d..aaabe71 100644 --- a/Cocoa/CrashReporter/JNXCrashReporter.m +++ b/Cocoa/CrashReporter/JNXCrashReporter.m @@ -12,8 +12,6 @@ #define JNX_CRASHREPORTER_DEFAULTS_DATEKEY @"JNXCrashReporter.lastCrashTestDate" #define JNX_CRASHREPORTER_DEFAULTS_VERSIONKEY @"JNXCrashReporter.lastCrashVersion" -#define JNX_CRASHREPORTER_SUBJECTKEY @"JNXCrashReporter.subject" -#define JNX_CRASHREPORTER_MAILTOKEY @"JNXCrashReporter.mailto" #define JNX_CRASHREPORTER_BODYTEXT @"Please describe the circumstances leading to the crash and any other relevant information:\n\n\n\n\n\n\nCrashlog follows:\n" @implementation JNXCrashReporter