Fix for bug #136656; send all test output from key-listener-test to stderr.
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 24 Mar 2004 14:02:50 +0000 (14:02 +0000)
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 24 Mar 2004 14:02:50 +0000 (14:02 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@641 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
test/key-listener-test.c

index 16657d9..060bcb2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,10 @@
        Don't cast 'object' to ATK_OBJECT when constructing
        an AtkAction interface for a hyperlink.
        See discussion in bug #120659.
+
+       * test/key-listener-test.c:
+       (report_all_key_event): Send output to stderr,
+       not stdout, for consistency with the rest of the test callbacks.
        
 2004-03-22  Bill Haneman <billh@gnome.org>
 
index 254a751..ee1738f 100644 (file)
@@ -195,7 +195,7 @@ report_tab_key_event (const AccessibleKeystroke *key, void *user_data)
 static SPIBoolean
 report_all_key_event (const AccessibleKeystroke *key, void *user_data)
 {
-  fprintf(stdout, "(%d)", key->keyID);
+  fprintf(stderr, "(%d)", key->keyID);
   return FALSE;
 }