|
From: <de...@us...> - 2009-09-17 23:57:56
|
Revision: 1805
http://iterm.svn.sourceforge.net/iterm/?rev=1805&view=rev
Author: delx
Date: 2009-09-17 23:57:47 +0000 (Thu, 17 Sep 2009)
Log Message:
-----------
Fixed debug statements
Modified Paths:
--------------
trunk/PTYTextView.m
Modified: trunk/PTYTextView.m
===================================================================
--- trunk/PTYTextView.m 2009-09-17 17:55:10 UTC (rev 1804)
+++ trunk/PTYTextView.m 2009-09-17 23:57:47 UTC (rev 1805)
@@ -869,7 +869,7 @@
- (void) otherMouseDown: (NSEvent *) event
{
#if DEBUG_METHOD_TRACE
- NSLog(@"%s: %@]", __PRETTY_FUNCTION__, sender );
+ NSLog(@"%s: %@]", __PRETTY_FUNCTION__, event);
#endif
NSPoint locationInWindow, locationInTextView;
@@ -989,7 +989,7 @@
- (void) rightMouseDown: (NSEvent *) event
{
#if DEBUG_METHOD_TRACE
- NSLog(@"%s: %@]", __PRETTY_FUNCTION__, sender );
+ NSLog(@"%s: %@]", __PRETTY_FUNCTION__, event);
#endif
NSPoint locationInWindow, locationInTextView;
@@ -1099,7 +1099,7 @@
- (void)scrollWheel:(NSEvent *)event
{
#if DEBUG_METHOD_TRACE
- NSLog(@"%s: %@]", __PRETTY_FUNCTION__, sender );
+ NSLog(@"%s: %@]", __PRETTY_FUNCTION__, event);
#endif
NSPoint locationInWindow, locationInTextView;
@@ -1623,7 +1623,7 @@
{
#if DEBUG_METHOD_TRACE
- NSLog(@"%s(%d):-[PTYTextView copy:%@]", __FILE__, __LINE__, sender );
+ NSLog(@"%s(%d):-[PTYTextView content]", __FILE__, __LINE__);
#endif
return [self contentFromX:0 Y:0 ToX:[dataSource width]-1 Y:[dataSource numberOfLines]-1 pad: NO];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|