Removed debug output.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@57 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-02-24 02:48:22 +00:00
parent 122fd7c694
commit 04579d4623
+1 -3
View File
@@ -1,5 +1,5 @@
/** /**
* $Id: querybox.c,v 1.2 2001/02/24 02:35:20 mdb Exp $ * $Id: querybox.c,v 1.3 2001/02/24 02:48:22 mdb Exp $
*/ */
#include <config.h> #include <config.h>
@@ -43,8 +43,6 @@ key_pressed (GtkWidget* widget, GdkEvent* event, gpointer callback_data)
keystr = convert_keysym_state_to_string(ek->keyval, ek->state); keystr = convert_keysym_state_to_string(ek->keyval, ek->state);
bindings = lk_prefs_get_bindings(); bindings = lk_prefs_get_bindings();
g_print("key pressed: %s (%d %d)\n", keystr, ek->state, ek->keyval);
for (i = 0; i < bindings->len; i++) { for (i = 0; i < bindings->len; i++) {
LkBinding* binding = LK_BINDING(g_ptr_array_index(bindings, i)); LkBinding* binding = LK_BINDING(g_ptr_array_index(bindings, i));
if (!strcmp(keystr, binding->key)) { if (!strcmp(keystr, binding->key)) {