diff options
Diffstat (limited to 'SmartDeviceLink/SDLOnLanguageChange.h')
-rw-r--r-- | SmartDeviceLink/SDLOnLanguageChange.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLOnLanguageChange.h b/SmartDeviceLink/SDLOnLanguageChange.h index f5bae80d1..4937c70fd 100644 --- a/SmartDeviceLink/SDLOnLanguageChange.h +++ b/SmartDeviceLink/SDLOnLanguageChange.h @@ -11,16 +11,21 @@ * * @since SDL 2.0 */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLOnLanguageChange : SDLRPCNotification /** * @abstract Current SDL voice engine (VR+TTS) language */ -@property (strong) SDLLanguage language; +@property (strong, nonatomic) SDLLanguage language; /** * @abstract Current display language */ -@property (strong) SDLLanguage hmiDisplayLanguage; +@property (strong, nonatomic) SDLLanguage hmiDisplayLanguage; @end + +NS_ASSUME_NONNULL_END |