summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTouchEventCapabilities.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
commit55850b04dca4b6d11e3a7fcac42d1e1708a36bdf (patch)
treed9f444d1fc9ddd1faf28647ff171202f86df1a32 /SmartDeviceLink/SDLTouchEventCapabilities.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLTouchEventCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLTouchEventCapabilities.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTouchEventCapabilities.h b/SmartDeviceLink/SDLTouchEventCapabilities.h
index 40f37801a..829eb7743 100644
--- a/SmartDeviceLink/SDLTouchEventCapabilities.h
+++ b/SmartDeviceLink/SDLTouchEventCapabilities.h
@@ -6,8 +6,8 @@
@interface SDLTouchEventCapabilities : SDLRPCStruct
-@property (strong) NSNumber<SDLBool> *pressAvailable;
-@property (strong) NSNumber<SDLBool> *multiTouchAvailable;
-@property (strong) NSNumber<SDLBool> *doublePressAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *pressAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *multiTouchAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *doublePressAvailable;
@end