summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-08-18 14:52:46 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-08-18 14:52:46 -0400
commitf1f87cd1a538de9ad71d803fa4509c6450cd888b (patch)
tree59ef12dcf348764262c1b1286a8fb4cd4d858d94
parente6848c716f3b0768ded3c298c5c67a5ecbd8a855 (diff)
downloadsdl_ios-f1f87cd1a538de9ad71d803fa4509c6450cd888b.tar.gz
Fix SDLProxyListener using deprecated classes
-rw-r--r--SmartDeviceLink/SDLNotificationDispatcher.m6
-rw-r--r--SmartDeviceLink/SDLProxyListener.h12
2 files changed, 9 insertions, 9 deletions
diff --git a/SmartDeviceLink/SDLNotificationDispatcher.m b/SmartDeviceLink/SDLNotificationDispatcher.m
index 00ae1f962..a26e46a4a 100644
--- a/SmartDeviceLink/SDLNotificationDispatcher.m
+++ b/SmartDeviceLink/SDLNotificationDispatcher.m
@@ -230,7 +230,7 @@ NS_ASSUME_NONNULL_BEGIN
[self postRPCResponseNotification:SDLDidReceiveSubscribeVehicleDataResponse response:response];
}
-- (void)onSubscribeWayPointsResponse:(SDLSubscribeWaypointsResponse *)response {
+- (void)onSubscribeWayPointsResponse:(SDLSubscribeWayPointsResponse *)response {
[self postRPCResponseNotification:SDLDidReceiveSubscribeWaypointsResponse response:response];
}
@@ -254,7 +254,7 @@ NS_ASSUME_NONNULL_BEGIN
[self postRPCResponseNotification:SDLDidReceiveUnsubscribeVehicleDataResponse response:response];
}
-- (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWaypointsResponse *)response {
+- (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWayPointsResponse *)response {
[self postRPCResponseNotification:SDLDidReceiveUnsubscribeWaypointsResponse response:response];
}
@@ -322,7 +322,7 @@ NS_ASSUME_NONNULL_BEGIN
[self postRPCNotificationNotification:SDLDidReceiveVehicleDataNotification notification:notification];
}
-- (void)onOnWayPointChange:(SDLOnWaypointChange *)notification {
+- (void)onOnWayPointChange:(SDLOnWayPointChange *)notification {
[self postRPCNotificationNotification:SDLDidReceiveWaypointNotification notification:notification];
}
diff --git a/SmartDeviceLink/SDLProxyListener.h b/SmartDeviceLink/SDLProxyListener.h
index b3d29825c..42c6782bf 100644
--- a/SmartDeviceLink/SDLProxyListener.h
+++ b/SmartDeviceLink/SDLProxyListener.h
@@ -42,7 +42,7 @@
@class SDLOnTBTClientState;
@class SDLOnTouchEvent;
@class SDLOnVehicleData;
-@class SDLOnWaypointChange;
+@class SDLOnWayPointChange;
@class SDLPerformAudioPassThruResponse;
@class SDLPerformInteractionResponse;
@class SDLPutFileResponse;
@@ -61,13 +61,13 @@
@class SDLSpeakResponse;
@class SDLSubscribeButtonResponse;
@class SDLSubscribeVehicleDataResponse;
-@class SDLSubscribeWaypointsResponse;
+@class SDLSubscribeWayPointsResponse;
@class SDLSyncPDataResponse;
@class SDLUpdateTurnListResponse;
@class SDLUnregisterAppInterfaceResponse;
@class SDLUnsubscribeButtonResponse;
@class SDLUnsubscribeVehicleDataResponse;
-@class SDLUnsubscribeWaypointsResponse;
+@class SDLUnsubscribeWayPointsResponse;
NS_ASSUME_NONNULL_BEGIN
@@ -118,7 +118,7 @@ NS_ASSUME_NONNULL_BEGIN
- (void)onOnTBTClientState:(SDLOnTBTClientState *)notification;
- (void)onOnTouchEvent:(SDLOnTouchEvent *)notification;
- (void)onOnVehicleData:(SDLOnVehicleData *)notification;
-- (void)onOnWayPointChange:(SDLOnWaypointChange *)notification;
+- (void)onOnWayPointChange:(SDLOnWayPointChange *)notification;
- (void)onPerformAudioPassThruResponse:(SDLPerformAudioPassThruResponse *)response;
- (void)onPerformInteractionResponse:(SDLPerformInteractionResponse *)response;
- (void)onPutFileResponse:(SDLPutFileResponse *)response;
@@ -137,13 +137,13 @@ NS_ASSUME_NONNULL_BEGIN
- (void)onSpeakResponse:(SDLSpeakResponse *)response;
- (void)onSubscribeButtonResponse:(SDLSubscribeButtonResponse *)response;
- (void)onSubscribeVehicleDataResponse:(SDLSubscribeVehicleDataResponse *)response;
-- (void)onSubscribeWayPointsResponse:(SDLSubscribeWaypointsResponse *)response;
+- (void)onSubscribeWayPointsResponse:(SDLSubscribeWayPointsResponse *)response;
- (void)onSyncPDataResponse:(SDLSyncPDataResponse *)response;
- (void)onUpdateTurnListResponse:(SDLUpdateTurnListResponse *)response;
- (void)onUnregisterAppInterfaceResponse:(SDLUnregisterAppInterfaceResponse *)response;
- (void)onUnsubscribeButtonResponse:(SDLUnsubscribeButtonResponse *)response;
- (void)onUnsubscribeVehicleDataResponse:(SDLUnsubscribeVehicleDataResponse *)response;
-- (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWaypointsResponse *)response;
+- (void)onUnsubscribeWayPointsResponse:(SDLUnsubscribeWayPointsResponse *)response;
@end