Author: tom
Date: Mon Nov  3 10:21:08 2008
New Revision: 3263

URL: http://svn.slimdevices.com?rev=3263&root=Jive&view=rev
Log:
got rid of debug statements

Modified:
    7.3/trunk/squeezeplay/src/squeezeplay/src/ui/jive_framework.c

Modified: 7.3/trunk/squeezeplay/src/squeezeplay/src/ui/jive_framework.c
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/squeezeplay/src/ui/jive_framework.c?rev=3263&root=Jive&r1=3262&r2=3263&view=diff
==============================================================================
--- 7.3/trunk/squeezeplay/src/squeezeplay/src/ui/jive_framework.c (original)
+++ 7.3/trunk/squeezeplay/src/squeezeplay/src/ui/jive_framework.c Mon Nov  3 
10:21:08 2008
@@ -1093,7 +1093,6 @@
 
        case SDL_KEYUP: {
                struct jive_keymap *entry = keymap;
-               fprintf(stderr, "event keysym: %d\n", event->key.keysym);
                
                while (entry->keysym != SDLK_UNKNOWN) {
                        if (entry->keysym == event->key.keysym.sym) {
@@ -1105,7 +1104,6 @@
                if (entry->keysym == SDLK_UNKNOWN) {
                        // handle regular character keys ('a', 't', etc..)
                        SDLMod mod = event->key.keysym.mod;
-                       fprintf(stderr, "event mod %d\n", 
event->key.keysym.mod);
                        if (event->type == SDL_KEYDOWN && 
event->key.keysym.unicode != 0) {
                                JiveEvent textEvent;
 
@@ -1118,7 +1116,6 @@
                                } else {
                                        textEvent.u.text.unicode = 
event->key.keysym.unicode;
                                }
-                               fprintf(stderr, "unicode %d\n", 
event->key.keysym.unicode);
                                jive_queue_event(&textEvent);
                        }
                        return 0;

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/cgi-bin/mailman/listinfo/jive-checkins

Reply via email to