diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2009-04-19 00:37:03 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:13:12 +0000 |
commit | 7adf7539c407d92d3574a6332693e42022066a84 (patch) | |
tree | d61d3902d89adb47fa437f9dab87a6cd0e7382b8 | |
parent | 7376b55c232c27ffe62335ad1e55b00ac8833b29 (diff) |
Minor change to logging.
-rw-r--r-- | UICaboodle/BrowserView.m | 4 |
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]; |