aboutsummaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
Diffstat (limited to 'win')
-rw-r--r--win/rfb_win32/SDisplay.cxx7
-rw-r--r--win/rfb_win32/SDisplay.h1
2 files changed, 1 insertions, 7 deletions
diff --git a/win/rfb_win32/SDisplay.cxx b/win/rfb_win32/SDisplay.cxx
index f14b49f1..05ddce34 100644
--- a/win/rfb_win32/SDisplay.cxx
+++ b/win/rfb_win32/SDisplay.cxx
@@ -316,11 +316,6 @@ void SDisplay::clientCutText(const char* text, int len) {
}
-void SDisplay::framebufferUpdateRequest()
-{
- SetEvent(updateEvent);
-}
-
Point SDisplay::getFbSize() {
bool startAndStop = !core;
@@ -382,7 +377,7 @@ SDisplay::processEvent(HANDLE event) {
inputs->blockInputs(disableLocalInputs);
// - Only process updates if the server is ready
- if (server && server->clientsReadyForUpdate()) {
+ if (server) {
bool try_update = false;
// - Check that the SDesktop doesn't need restarting
diff --git a/win/rfb_win32/SDisplay.h b/win/rfb_win32/SDisplay.h
index 6dbb50a5..6aac59ae 100644
--- a/win/rfb_win32/SDisplay.h
+++ b/win/rfb_win32/SDisplay.h
@@ -68,7 +68,6 @@ namespace rfb {
virtual void pointerEvent(const Point& pos, int buttonmask);
virtual void keyEvent(rdr::U32 key, bool down);
virtual void clientCutText(const char* str, int len);
- virtual void framebufferUpdateRequest();
virtual Point getFbSize();
// -=- Clipboard