summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-07-17 12:38:59 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-07-17 12:38:59 -0700
commit83d93f65cf0f4efcd5fabafda631d221f053f99a (patch)
tree7251e9c483ac892949640232fbc1c365f03f428e
parentbb4adcbfe28bf406baf88630b239c8d021e54f73 (diff)
downloadsdl_ios-83d93f65cf0f4efcd5fabafda631d221f053f99a.tar.gz
Removed "k" from internal constant.
-rw-r--r--SmartDeviceLink/SDLTouchManager.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTouchManager.m b/SmartDeviceLink/SDLTouchManager.m
index 77b6cf248..e733dc5f3 100644
--- a/SmartDeviceLink/SDLTouchManager.m
+++ b/SmartDeviceLink/SDLTouchManager.m
@@ -26,7 +26,7 @@ typedef NS_ENUM(NSUInteger, SDLPerformingTouchType) {
SDLPerformingTouchTypePanningTouch
};
-static NSUInteger const kMaximumNumberOfTouches = 2;
+static NSUInteger const MaximumNumberOfTouches = 2;
@interface SDLTouchManager () <SDLProxyListener>
@@ -73,8 +73,8 @@ static NSUInteger const kMaximumNumberOfTouches = 2;
SDLTouchEvent* touchEvent = notification.event.firstObject;
SDLTouch* touch = [[SDLTouch alloc] initWithTouchEvent:touchEvent];
-
- if (touch.identifier > kMaximumNumberOfTouches) {
+
+ if (touch.identifier > MaximumNumberOfTouches) {
return;
}