summaryrefslogtreecommitdiff
path: root/UICaboodle
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-04-19 00:37:03 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:13:12 +0000
commit7adf7539c407d92d3574a6332693e42022066a84 (patch)
treed61d3902d89adb47fa437f9dab87a6cd0e7382b8 /UICaboodle
parent7376b55c232c27ffe62335ad1e55b00ac8833b29 (diff)
Minor change to logging.
Diffstat (limited to 'UICaboodle')
-rw-r--r--UICaboodle/BrowserView.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/UICaboodle/BrowserView.m b/UICaboodle/BrowserView.m
index feb51ad..0161c5f 100644
--- a/UICaboodle/BrowserView.m
+++ b/UICaboodle/BrowserView.m
@@ -496,7 +496,7 @@
- (void) fixScroller {
CGRect bounds([webview_ documentBounds]);
-#if LogBrowser
+#if TrackResize
NSLog(@"_fs:(%f,%f+%f,%f)", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height);
#endif
[self _fixScroller:bounds];
@@ -504,7 +504,7 @@
- (void) view:(UIView *)sender didSetFrame:(CGRect)frame {
size_ = frame.size;
-#if LogBrowser
+#if TrackResize
NSLog(@"dsf:(%f,%f+%f,%f)", frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);
#endif
[self _fixScroller:frame];