From 3b872bb727d48f27db8654c2b9cf0fda784ccaaf Mon Sep 17 00:00:00 2001 From: crs Date: Tue, 4 Jun 2002 11:02:33 +0000 Subject: [PATCH] fixed timeout when getting selection -- forgot to set flag to terminate event loop. --- synergy/CXWindowsClipboard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/synergy/CXWindowsClipboard.cpp b/synergy/CXWindowsClipboard.cpp index 8ab22899..9a225e39 100644 --- a/synergy/CXWindowsClipboard.cpp +++ b/synergy/CXWindowsClipboard.cpp @@ -1190,6 +1190,7 @@ bool CXWindowsClipboard::CICCCMGetClipboard::doEventPredicate( // done if this is the timeout message if (xevent->xclient.window == m_requestor && xevent->xclient.message_type == m_timeout) { + m_failed = true; return true; }