diff options
author | Mauricio <mjuare44@ford.com> | 2019-08-28 12:44:25 +0200 |
---|---|---|
committer | Mauricio <mjuare44@ford.com> | 2019-08-28 12:44:25 +0200 |
commit | be9a44bd03b27e628a684f31710f29903ccd5b60 (patch) | |
tree | 4431ef74abb278ec926aba03373de8016b2b9c87 /SmartDeviceLink/SDLOnHMIStatus.m | |
parent | fe35d7795e12f739d1b30a85b4c2bcaa39a1dcdb (diff) | |
download | sdl_ios-be9a44bd03b27e628a684f31710f29903ccd5b60.tar.gz |
Change windowID, duplicateUpdatedFromWindowID to NSInteger, SDLUint
Diffstat (limited to 'SmartDeviceLink/SDLOnHMIStatus.m')
-rw-r--r-- | SmartDeviceLink/SDLOnHMIStatus.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLOnHMIStatus.m b/SmartDeviceLink/SDLOnHMIStatus.m index c0015f5ae..f80b4b4fb 100644 --- a/SmartDeviceLink/SDLOnHMIStatus.m +++ b/SmartDeviceLink/SDLOnHMIStatus.m @@ -58,11 +58,11 @@ NS_ASSUME_NONNULL_BEGIN return [self.parameters sdl_enumForName:SDLRPCParameterNameSystemContext error:&error]; } -- (void)setWindowID:(nullable NSNumber<SDLInt> *)windowID { +- (void)setWindowID:(nullable NSNumber<SDLUInt> *)windowID { [self.parameters sdl_setObject:windowID forName:SDLRPCParameterNameWindowId]; } -- (nullable NSNumber<SDLInt> *)windowID { +- (nullable NSNumber<SDLUInt> *)windowID { NSError *error = nil; return [self.parameters sdl_objectForName:SDLRPCParameterNameWindowId ofClass:NSNumber.class error:&error]; } |