summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAlert.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-11-03 15:37:10 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-11-03 15:37:10 -0400
commitfd410e3571414d1878f316faee54834b96295da8 (patch)
tree516d003f523a57fbd5942992297278f9d9226641 /SmartDeviceLink/SDLAlert.m
parente7cf5428dbbb0f825e33b61c6d49ec70d8411180 (diff)
downloadsdl_ios-fd410e3571414d1878f316faee54834b96295da8.tar.gz
Run clang-format
Diffstat (limited to 'SmartDeviceLink/SDLAlert.m')
-rw-r--r--SmartDeviceLink/SDLAlert.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLAlert.m b/SmartDeviceLink/SDLAlert.m
index 372dc0e41..d5e11a12b 100644
--- a/SmartDeviceLink/SDLAlert.m
+++ b/SmartDeviceLink/SDLAlert.m
@@ -48,7 +48,7 @@ static UInt16 const SDLDefaultDuration = 5000;
}
- (instancetype)initWithTTS:(NSString *)ttsText alertText1:(NSString *)alertText1 alertText2:(NSString *)alertText2 alertText3:(NSString *)alertText3 playTone:(BOOL)playTone duration:(UInt16)duration {
- NSMutableArray* ttsChunks = [SDLTTSChunk textChunksFromString:ttsText];
+ NSMutableArray *ttsChunks = [SDLTTSChunk textChunksFromString:ttsText];
return [self initWithTTSChunks:ttsChunks alertText1:alertText1 alertText2:alertText2 alertText3:alertText3 playTone:playTone duration:duration softButtons:nil];
}
@@ -65,7 +65,7 @@ static UInt16 const SDLDefaultDuration = 5000;
if (!self) {
return nil;
}
-
+
self.ttsChunks = [ttsChunks mutableCopy];
self.alertText1 = alertText1;
self.alertText2 = alertText2;
@@ -73,7 +73,7 @@ static UInt16 const SDLDefaultDuration = 5000;
self.playTone = @(playTone);
self.duration = @(duration);
self.softButtons = [softButtons mutableCopy];
-
+
return self;
}