summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDisplayCapabilities.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
committerMuller, Alexander (A.) <amulle19@ford.com>2016-10-22 21:33:33 -0600
commit29df55dcd367781e6f3f10482e07f070008832a8 (patch)
treed615e95afc57270eead9c0edf9411d16ee2b19d0 /SmartDeviceLink/SDLDisplayCapabilities.h
parentdfc28adc2373a3aafb4bf3e3535199e4c2c2b217 (diff)
downloadsdl_ios-29df55dcd367781e6f3f10482e07f070008832a8.tar.gz
Updated all NSNumbers with type generic.
Diffstat (limited to 'SmartDeviceLink/SDLDisplayCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLDisplayCapabilities.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLDisplayCapabilities.h b/SmartDeviceLink/SDLDisplayCapabilities.h
index b38d7b54d..0e12ff682 100644
--- a/SmartDeviceLink/SDLDisplayCapabilities.h
+++ b/SmartDeviceLink/SDLDisplayCapabilities.h
@@ -62,7 +62,7 @@
*
* Required, Boolean
*/
-@property (strong) NSNumber *graphicSupported;
+@property (strong) NSNumber<SDLBool> *graphicSupported;
/**
* @abstract Number of presets the screen supports
@@ -85,6 +85,6 @@
*
* Optional, Integer 1 - 100
*/
-@property (strong) NSNumber *numCustomPresetsAvailable;
+@property (strong) NSNumber<SDLInt> *numCustomPresetsAvailable;
@end