[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:15:04 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit aa4905b315b7489a9d26c41f890c16b0f5139f0f
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon May 27 05:59:57 2002 +0000

    	Fixed Radar 936147 - debug output in console "keyUp: NSEvent: type=KeyUp"
    
    	* WebView.subproj/IFWebView.mm:
    	(-[IFWebView keyDown:]): Turned NSLog into WEBKITDEBUGLEBEL.
    	(-[IFWebView keyUp:]): Likewise.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1219 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index fedc912..f3a1553 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-05-26  Maciej Stachowiak  <mjs at apple.com>
 
+	Fixed Radar 936147 - debug output in console "keyUp: NSEvent: type=KeyUp"
+
+	* WebView.subproj/IFWebView.mm:
+	(-[IFWebView keyDown:]): Turned NSLog into WEBKITDEBUGLEBEL.
+	(-[IFWebView keyUp:]): Likewise.
+
+2002-05-26  Maciej Stachowiak  <mjs at apple.com>
+
 	WebKit part of fix for:
 
 	Radar 2884085 - add support for changing cursor over links
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index fedc912..f3a1553 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-05-26  Maciej Stachowiak  <mjs at apple.com>
 
+	Fixed Radar 936147 - debug output in console "keyUp: NSEvent: type=KeyUp"
+
+	* WebView.subproj/IFWebView.mm:
+	(-[IFWebView keyDown:]): Turned NSLog into WEBKITDEBUGLEBEL.
+	(-[IFWebView keyUp:]): Likewise.
+
+2002-05-26  Maciej Stachowiak  <mjs at apple.com>
+
 	WebKit part of fix for:
 
 	Radar 2884085 - add support for changing cursor over links
diff --git a/WebKit/WebView.subproj/IFWebView.mm b/WebKit/WebView.subproj/IFWebView.mm
index 4ea0a82..84897f1 100644
--- a/WebKit/WebView.subproj/IFWebView.mm
+++ b/WebKit/WebView.subproj/IFWebView.mm
@@ -566,7 +566,7 @@
 
 - (void)keyDown: (NSEvent *)event
 {
-    NSLog (@"keyDown: %@\n", event);
+    WEBKITDEBUGLEVEL(WEBKIT_LOG_EVENTS, "keyDown: %s\n", [[event description] cString]);
     int state = 0;
     
     [self _addModifiers:[event modifierFlags] toState:&state];
@@ -581,7 +581,7 @@
 
 - (void)keyUp: (NSEvent *)event
 {
-    NSLog (@"keyUp: %@\n", event);
+    WEBKITDEBUGLEVEL(WEBKIT_LOG_EVENTS, "keyUp: %s\n", [[event description] cString]);
     int state = 0;
     
     [self _addModifiers:[event modifierFlags] toState:&state];
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 4ea0a82..84897f1 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -566,7 +566,7 @@
 
 - (void)keyDown: (NSEvent *)event
 {
-    NSLog (@"keyDown: %@\n", event);
+    WEBKITDEBUGLEVEL(WEBKIT_LOG_EVENTS, "keyDown: %s\n", [[event description] cString]);
     int state = 0;
     
     [self _addModifiers:[event modifierFlags] toState:&state];
@@ -581,7 +581,7 @@
 
 - (void)keyUp: (NSEvent *)event
 {
-    NSLog (@"keyUp: %@\n", event);
+    WEBKITDEBUGLEVEL(WEBKIT_LOG_EVENTS, "keyUp: %s\n", [[event description] cString]);
     int state = 0;
     
     [self _addModifiers:[event modifierFlags] toState:&state];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list