Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-08-03 11:08:28 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-08-03 11:08:28 +0400
commit02ab2b473cfad725f42a67699a7afedc90c512e3 (patch)
tree3467ee9e81f21b91c993ba87b4c95400ebb4a216 /intern/ghost
parent3b541b259fc3591bf72605e5442701691190ad74 (diff)
Debug print removed.
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index c985c6dd0a6..bbf8efeaee3 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -730,11 +730,9 @@ GHOST_Event* GHOST_SystemWin32::processWindowEvent(GHOST_TEventType type, GHOST_
{
GHOST_System* system = (GHOST_System*)getSystem();
- if (type == GHOST_kEventWindowActivate)
- {
- puts("activating window");
+ if (type == GHOST_kEventWindowActivate) {
system->getWindowManager()->setActiveWindow(window);
- }
+ }
return new GHOST_Event(system->getMilliSeconds(), type, window);
}