Fix two wrong debug output messages and add one for AS_SYNC.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26063 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-06-21 13:45:58 +00:00
parent 4e913061bb
commit f24652cba6

View File

@ -1036,6 +1036,7 @@ ServerWindow::_DispatchMessage(int32 code, BPrivate::LinkReceiver &link)
break;
case AS_SYNC:
DTRACE(("ServerWindow %s: Message AS_SYNC\n", Title()));
// the synchronisation works by the fact that the client
// window is waiting for this reply, after having received it,
// client and server queues are in sync (earlier, the client
@ -1046,12 +1047,12 @@ ServerWindow::_DispatchMessage(int32 code, BPrivate::LinkReceiver &link)
break;
case AS_BEGIN_UPDATE:
DTRACE(("ServerWindowo %s: AS_BEGIN_UPDATE\n", Title()));
DTRACE(("ServerWindow %s: Message AS_BEGIN_UPDATE\n", Title()));
fWindow->BeginUpdate(fLink);
break;
case AS_END_UPDATE:
DTRACE(("ServerWindowo %s: AS_END_UPDATE\n", Title()));
DTRACE(("ServerWindow %s: Message AS_END_UPDATE\n", Title()));
fWindow->EndUpdate();
break;