Browse Source

Removed superfluous comments.

Camilla Berglund 13 years ago
parent
commit
38e4cc3dad
1 changed files with 0 additions and 6 deletions
  1. 0 6
      src/x11_window.c

+ 0 - 6
src/x11_window.c

@@ -479,12 +479,8 @@ static void processSingleEvent(void)
             if (window == NULL)
             if (window == NULL)
                 return;
                 return;
 
 
-            // Translate and report key press
             _glfwInputKey(window, translateKey(event.xkey.keycode), GLFW_PRESS);
             _glfwInputKey(window, translateKey(event.xkey.keycode), GLFW_PRESS);
-
-            // Translate and report character input
             _glfwInputChar(window, translateChar(&event.xkey));
             _glfwInputChar(window, translateChar(&event.xkey));
-
             break;
             break;
         }
         }
 
 
@@ -521,9 +517,7 @@ static void processSingleEvent(void)
                 }
                 }
             }
             }
 
 
-            // Translate and report key release
             _glfwInputKey(window, translateKey(event.xkey.keycode), GLFW_RELEASE);
             _glfwInputKey(window, translateKey(event.xkey.keycode), GLFW_RELEASE);
-
             break;
             break;
         }
         }