From dd05e5044ee245e26b132698f860bd534198705b Mon Sep 17 00:00:00 2001 From: "Muller, Alexander (A.)" Date: Wed, 21 Sep 2016 16:40:21 -0700 Subject: Replaced all defines with constant strings of the SDLName typedef. Also modified SDLFunctionID to use a static dictionary. --- SmartDeviceLink/SDLSubscribeButtonResponse.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SmartDeviceLink/SDLSubscribeButtonResponse.m') diff --git a/SmartDeviceLink/SDLSubscribeButtonResponse.m b/SmartDeviceLink/SDLSubscribeButtonResponse.m index a70d58ede..aedad91de 100644 --- a/SmartDeviceLink/SDLSubscribeButtonResponse.m +++ b/SmartDeviceLink/SDLSubscribeButtonResponse.m @@ -4,12 +4,12 @@ #import "SDLSubscribeButtonResponse.h" -#import "SDLNames.h" + @implementation SDLSubscribeButtonResponse - (instancetype)init { - if (self = [super initWithName:NAMES_SubscribeButton]) { + if (self = [super initWithName:SDLNameSubscribeButton]) { } return self; } -- cgit v1.2.1 From 3590d6949f78cc4b3f23e7eb21368474a5c41425 Mon Sep 17 00:00:00 2001 From: "Muller, Alexander (A.)" Date: Thu, 22 Sep 2016 10:25:10 -0700 Subject: Reverted SDLNames to Project instead of Public. --- SmartDeviceLink/SDLSubscribeButtonResponse.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'SmartDeviceLink/SDLSubscribeButtonResponse.m') diff --git a/SmartDeviceLink/SDLSubscribeButtonResponse.m b/SmartDeviceLink/SDLSubscribeButtonResponse.m index aedad91de..892125c23 100644 --- a/SmartDeviceLink/SDLSubscribeButtonResponse.m +++ b/SmartDeviceLink/SDLSubscribeButtonResponse.m @@ -4,7 +4,7 @@ #import "SDLSubscribeButtonResponse.h" - +#import "SDLNames.h" @implementation SDLSubscribeButtonResponse -- cgit v1.2.1