summaryrefslogtreecommitdiff
path: root/SmartDeviceLink
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-08-24 16:54:40 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-08-24 16:54:40 -0400
commit8f277f95d75bf528e10b899141902c98a0fce254 (patch)
tree748a87677dfcd6c14c9d534378310bf177a313dc /SmartDeviceLink
parentf06f4948c10b641d1ef4fdaf69d79a465fbad471 (diff)
downloadsdl_ios-8f277f95d75bf528e10b899141902c98a0fce254.tar.gz
Fix a bug with some reverted code
Diffstat (limited to 'SmartDeviceLink')
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.h2
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.m2
2 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLLifecycleManager.h b/SmartDeviceLink/SDLLifecycleManager.h
index a828851f6..8031f4931 100644
--- a/SmartDeviceLink/SDLLifecycleManager.h
+++ b/SmartDeviceLink/SDLLifecycleManager.h
@@ -72,7 +72,7 @@ typedef void (^SDLManagerReadyBlock)(BOOL success, NSError *_Nullable error);
@property (assign, nonatomic, readonly) UInt16 lastCorrelationId;
@property (assign, nonatomic, readonly) SDLLifecycleState *lifecycleState;
-@property (copy, nonatomic, readonly, nullable) SDLOnHMIStatus *hmiStatus;
+@property (copy, nonatomic, readonly, nullable) SDLHMILevel *hmiLevel;
#pragma mark Lifecycle
/**
diff --git a/SmartDeviceLink/SDLLifecycleManager.m b/SmartDeviceLink/SDLLifecycleManager.m
index 4a2818110..dd75f30a8 100644
--- a/SmartDeviceLink/SDLLifecycleManager.m
+++ b/SmartDeviceLink/SDLLifecycleManager.m
@@ -47,7 +47,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface SDLLifecycleManager () <SDLConnectionManagerType>
// Readonly public properties
-@property (copy, nonatomic, readwrite, nullable) SDLOnHMIStatus *hmiStatus;
+@property (copy, nonatomic, readwrite, nullable) SDLHMILevel *hmiLevel;
@property (copy, nonatomic, readwrite) SDLConfiguration *configuration;
@property (assign, nonatomic, readwrite) UInt16 lastCorrelationId;
@property (strong, nonatomic, readwrite, nullable) SDLRegisterAppInterfaceResponse *registerAppInterfaceResponse;