summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-27 20:29:09 +0200
committerTor Lillqvist <tml@collabora.com>2013-10-27 22:11:18 +0200
commitee1f43710f460e8c865d97e726163cba2847c815 (patch)
tree5b8fb8b2829f4718143be6f7288f3551f58a4044 /ios
parent37056560a387360866486396e0adcb80b26edea4 (diff)
Bin some unnecessary NSLogging
Change-Id: Id4baff53735586345dd6624f3c8b996f1816149a
Diffstat (limited to 'ios')
-rw-r--r--ios/experimental/LibreOffice/LibreOffice/View.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/ios/experimental/LibreOffice/LibreOffice/View.m b/ios/experimental/LibreOffice/LibreOffice/View.m
index cd38ab50ba93..e145c362dc61 100644
--- a/ios/experimental/LibreOffice/LibreOffice/View.m
+++ b/ios/experimental/LibreOffice/LibreOffice/View.m
@@ -190,12 +190,10 @@
if (gestureRecognizer.state == UIGestureRecognizerStateBegan &&
gestureRecognizer.numberOfTouches == 1) {
if ([self topLeftResizeHandleIsCloseTo:location]) {
- NSLog(@"===> dragging TOPLEFT handle");
draggedHandle = TOPLEFT;
dragOffset.x = location.x - self.selectionRectangles[0].origin.x;
dragOffset.y = location.y - self.selectionRectangles[0].origin.y;
} else if ([self bottomRightResizeHandleIsCloseTo:location]) {
- NSLog(@"===> dragging BOTTOMRIGHT handle");
draggedHandle = BOTTOMRIGHT;
dragOffset.x = location.x - self.selectionRectangles[N-1].origin.x;
dragOffset.y = location.y - self.selectionRectangles[N-1].origin.y;