summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTTSChunk.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTTSChunk.m')
-rw-r--r--SmartDeviceLink/SDLTTSChunk.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLTTSChunk.m b/SmartDeviceLink/SDLTTSChunk.m
index 2be452315..f7553422b 100644
--- a/SmartDeviceLink/SDLTTSChunk.m
+++ b/SmartDeviceLink/SDLTTSChunk.m
@@ -48,19 +48,19 @@
}
- (void)setText:(NSString *)text {
- [self setObject:text forName:SDLNameText];
+ [store sdl_setObject:text forName:SDLNameText];
}
- (NSString *)text {
- return [self objectForName:SDLNameText];
+ return [store sdl_objectForName:SDLNameText];
}
- (void)setType:(SDLSpeechCapabilities)type {
- [self setObject:type forName:SDLNameType];
+ [store sdl_setObject:type forName:SDLNameType];
}
- (SDLSpeechCapabilities)type {
- return [self objectForName:SDLNameType];
+ return [store sdl_objectForName:SDLNameType];
}
@end