Send clipboard data in a thread #4601

This commit is contained in:
Jerry (Xinyu Hou) 2015-05-15 16:05:20 -07:00 committed by Xinyu Hou
parent 44089d55e8
commit 4c36c08099
4 changed files with 19 additions and 66 deletions

View file

@ -370,6 +370,9 @@ private:
// send drag info to new client screen
void sendDragInfo(BaseClientProxy* newScreen);
// thread funciton for sending clipboard
void clipboardTransmissionThread(void*);
public:
bool m_mock;
@ -480,4 +483,6 @@ private:
bool m_waitDragInfoThread;
ClientListener* m_clientListener;
Thread* m_dataTransmissionThread;
};