From 835a7ebdf0781b55761fa159d20ab95d0bef4ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Fri, 7 Apr 2006 19:04:51 +0000 Subject: [PATCH] no need to contact the server for this, transaction means that drawing commands are not immediately flushed, which is handled entirely on client side git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17044 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/Window.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kits/interface/Window.cpp b/src/kits/interface/Window.cpp index 828469bfa6..d2586e21c5 100644 --- a/src/kits/interface/Window.cpp +++ b/src/kits/interface/Window.cpp @@ -561,7 +561,6 @@ BWindow::BeginViewTransaction() Unlock(); return; } - fLink->StartMessage(AS_BEGIN_TRANSACTION); fInTransaction = true; Unlock(); @@ -577,7 +576,6 @@ BWindow::EndViewTransaction() Unlock(); return; } - fLink->StartMessage(AS_END_TRANSACTION); fLink->Flush(); fInTransaction = false;