summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-12-15 09:13:34 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-12-15 09:13:34 -0500
commit7a82d7dbb1b47af8870cec5ab2bc2cfa8a6f7a96 (patch)
treea108b1b2fdf62e164e4654a7892069af0e8bac11
parentac40e4895111a17fb4140135018a23da5f36ee7e (diff)
downloadsdl_ios-7a82d7dbb1b47af8870cec5ab2bc2cfa8a6f7a96.tar.gz
Fix misnamed items
-rw-r--r--SmartDeviceLink/SDLFocusableItemHitTester.h2
-rw-r--r--SmartDeviceLink/SDLFocusableItemLocator.m2
-rw-r--r--SmartDeviceLink/SDLTouchManager.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLFocusableItemHitTester.h b/SmartDeviceLink/SDLFocusableItemHitTester.h
index fe5080500..7dd7662b4 100644
--- a/SmartDeviceLink/SDLFocusableItemHitTester.h
+++ b/SmartDeviceLink/SDLFocusableItemHitTester.h
@@ -1,5 +1,5 @@
//
-// SDLHapticHitTester.h
+// SDLFocusableItemHitTester.h
// SmartDeviceLink-iOS
//
// Copyright © 2017 smartdevicelink. All rights reserved.
diff --git a/SmartDeviceLink/SDLFocusableItemLocator.m b/SmartDeviceLink/SDLFocusableItemLocator.m
index 5751ab5a8..d44f8113c 100644
--- a/SmartDeviceLink/SDLFocusableItemLocator.m
+++ b/SmartDeviceLink/SDLFocusableItemLocator.m
@@ -124,7 +124,7 @@ NS_ASSUME_NONNULL_BEGIN
[self.connectionManager sendManagerRequest:hapticRPC withResponseHandler:nil];
}
-#pragma mark SDLHapticHitTester functions
+#pragma mark SDLFocusableItemHitTester functions
- (nullable UIView *)viewForPoint:(CGPoint)point {
UIView *selectedView = nil;
diff --git a/SmartDeviceLink/SDLTouchManager.h b/SmartDeviceLink/SDLTouchManager.h
index 8cf417a2c..f67ca882f 100644
--- a/SmartDeviceLink/SDLTouchManager.h
+++ b/SmartDeviceLink/SDLTouchManager.h
@@ -10,7 +10,7 @@
#import "SDLTouchType.h"
-@protocol SDLHapticHitTester;
+@protocol SDLFocusableItemHitTester;
@protocol SDLTouchManagerDelegate;
@class SDLTouch;
@@ -82,7 +82,7 @@ typedef void(^SDLTouchEventHandler)(SDLTouch *touch, SDLTouchType type);
@param hitTester The hit tester to be used to correlate a point with a view
@return The initialized touch manager
*/
-- (instancetype)initWithHitTester:(nullable id<SDLHapticHitTester>)hitTester;
+- (instancetype)initWithHitTester:(nullable id<SDLFocusableItemHitTester>)hitTester;
@end