summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLButtonCapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLButtonCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLButtonCapabilities.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLButtonCapabilities.h b/SmartDeviceLink/SDLButtonCapabilities.h
index 33e8e8dcb..f73416239 100644
--- a/SmartDeviceLink/SDLButtonCapabilities.h
+++ b/SmartDeviceLink/SDLButtonCapabilities.h
@@ -23,20 +23,20 @@
*
* Required, Boolean
*/
-@property (strong) NSNumber *shortPressAvailable;
+@property (strong) NSNumber<SDLBool> *shortPressAvailable;
/**
* @abstract A NSNumber value indicates whether the button supports a LONG press
*
* Required, Boolean
*/
-@property (strong) NSNumber *longPressAvailable;
+@property (strong) NSNumber<SDLBool> *longPressAvailable;
/**
* @abstract A NSNumber value indicates whether the button supports "button down" and "button up"
*
* Required, Boolean
*/
-@property (strong) NSNumber *upDownAvailable;
+@property (strong) NSNumber<SDLBool> *upDownAvailable;
@end