removed temporary debug logging

This commit is contained in:
Mike Erwin 2011-06-15 02:40:25 +00:00
parent 450f176a8f
commit 6aa7777144
2 changed files with 0 additions and 5 deletions

@ -111,7 +111,6 @@ GHOST_TSuccess GHOST_EventManager::pushEvent(GHOST_IEvent* event)
bool GHOST_EventManager::dispatchEvent(GHOST_IEvent* event)
{
bool handled;
printf("dispatching %d\n", event->getType());
if (event) {
handled = true;
TConsumerVector::iterator iter;

@ -2376,8 +2376,6 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
wmWindow *owin;
wmEvent event, *evt= win->eventstate;
printf("ghost (%d) --> wm\n", type);
/* initialize and copy state (only mouse x y and modifiers) */
event= *evt;
@ -2581,7 +2579,6 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
}
case GHOST_kEventNDOFMotion: {
puts("ndof motion in wm");
event.type = NDOF_MOTION;
attach_ndof_data(&event, customdata);
wm_event_add(win, &event);
@ -2591,7 +2588,6 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
case GHOST_kEventNDOFButton: {
GHOST_TEventNDOFButtonData* e = customdata;
puts("ndof button in wm");
event.type = NDOF_BUTTON_NONE + e->button;