summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCRequest.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLRPCRequest.m')
-rw-r--r--SmartDeviceLink/SDLRPCRequest.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLRPCRequest.m b/SmartDeviceLink/SDLRPCRequest.m
index 48c568c9d..3cb7af4f6 100644
--- a/SmartDeviceLink/SDLRPCRequest.m
+++ b/SmartDeviceLink/SDLRPCRequest.m
@@ -4,19 +4,19 @@
#import "SDLRPCRequest.h"
-#import "SDLNames.h"
+
@implementation SDLRPCRequest
- (NSNumber *)correlationID {
- return [function objectForKey:NAMES_correlationID];
+ return [function objectForKey:SDLNameCorrelationId];
}
- (void)setCorrelationID:(NSNumber *)corrID {
if (corrID != nil) {
- [function setObject:corrID forKey:NAMES_correlationID];
+ [function setObject:corrID forKey:SDLNameCorrelationId];
} else {
- [function removeObjectForKey:NAMES_correlationID];
+ [function removeObjectForKey:SDLNameCorrelationId];
}
}