summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnHMIStatus.m
diff options
context:
space:
mode:
authorMauricio <mjuare44@ford.com>2019-08-28 12:44:25 +0200
committerMauricio <mjuare44@ford.com>2019-08-28 12:44:25 +0200
commitbe9a44bd03b27e628a684f31710f29903ccd5b60 (patch)
tree4431ef74abb278ec926aba03373de8016b2b9c87 /SmartDeviceLink/SDLOnHMIStatus.m
parentfe35d7795e12f739d1b30a85b4c2bcaa39a1dcdb (diff)
downloadsdl_ios-be9a44bd03b27e628a684f31710f29903ccd5b60.tar.gz
Change windowID, duplicateUpdatedFromWindowID to NSInteger, SDLUint
Diffstat (limited to 'SmartDeviceLink/SDLOnHMIStatus.m')
-rw-r--r--SmartDeviceLink/SDLOnHMIStatus.m4
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];
}