diff options
author | Damiano Galassi <[email protected]> | 2019-08-12 10:19:00 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-08-12 10:19:00 +0200 |
commit | c5a4d181ebedbdee2bdfefeffa28128d0b9c95c1 (patch) | |
tree | 635e3d036b7065987f29d38489838ceb6cdd11eb /macosx/HBExceptionAlertController.h | |
parent | 76d08e5d4bb6287de03519cf43cc298d2d896a7a (diff) |
MacGui: enable and fix more warnings. Review nullability annotations.
Diffstat (limited to 'macosx/HBExceptionAlertController.h')
-rw-r--r-- | macosx/HBExceptionAlertController.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBExceptionAlertController.h b/macosx/HBExceptionAlertController.h index aaf49647c..c6c0ee4b2 100644 --- a/macosx/HBExceptionAlertController.h +++ b/macosx/HBExceptionAlertController.h @@ -14,8 +14,8 @@ typedef NS_ENUM(NSUInteger, HBExceptionAlertControllerResult) { @interface HBExceptionAlertController : NSWindowController // Properties are used by bindings -@property (copy) NSString *exceptionMessage; -@property (copy) NSAttributedString *exceptionBacktrace; +@property (nonatomic, copy) NSString *exceptionMessage; +@property (nonatomic, copy) NSAttributedString *exceptionBacktrace; - (IBAction)btnCrashClicked:(id)sender; - (IBAction)btnContinueClicked:(id)sender; |