diff options
author | Jacek Antonelli | 2008-09-06 18:27:37 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:27:41 -0500 |
commit | d78e22887482056e9e29cccf2b7a8a675035d040 (patch) | |
tree | a0e0fde1b1a8f91d66c3eb84871b0a3c34947419 /linden/indra/llwindow/llwindowwin32.cpp | |
parent | Second Life viewer sources 1.21.0-RC (diff) | |
download | meta-impy-d78e22887482056e9e29cccf2b7a8a675035d040.zip meta-impy-d78e22887482056e9e29cccf2b7a8a675035d040.tar.gz meta-impy-d78e22887482056e9e29cccf2b7a8a675035d040.tar.bz2 meta-impy-d78e22887482056e9e29cccf2b7a8a675035d040.tar.xz |
Second Life viewer sources 1.21.1-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llwindow/llwindowwin32.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index 047fa31..3729a71 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -1575,7 +1575,9 @@ void LLWindowWin32::gatherInput() | |||
1575 | 1575 | ||
1576 | while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && msg_count < MAX_MESSAGE_PER_UPDATE) | 1576 | while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && msg_count < MAX_MESSAGE_PER_UPDATE) |
1577 | { | 1577 | { |
1578 | mCallbacks->handlePingWatchdog(this, "Main:TranslateGatherInput"); | ||
1578 | TranslateMessage(&msg); | 1579 | TranslateMessage(&msg); |
1580 | mCallbacks->handlePingWatchdog(this, "Main:DispatchGatherInput"); | ||
1579 | DispatchMessage(&msg); | 1581 | DispatchMessage(&msg); |
1580 | msg_count++; | 1582 | msg_count++; |
1581 | 1583 | ||
@@ -1602,7 +1604,7 @@ void LLWindowWin32::gatherInput() | |||
1602 | } | 1604 | } |
1603 | } | 1605 | } |
1604 | */ | 1606 | */ |
1605 | 1607 | mCallbacks->handlePingWatchdog(this, "Main:AsyncCallbackGatherInput"); | |
1606 | // For async host by name support. Really hacky. | 1608 | // For async host by name support. Really hacky. |
1607 | if (gAsyncMsgCallback && (LL_WM_HOST_RESOLVED == msg.message)) | 1609 | if (gAsyncMsgCallback && (LL_WM_HOST_RESOLVED == msg.message)) |
1608 | { | 1610 | { |