Refactored send drag info on server #4584

This commit is contained in:
Jerry (Xinyu Hou) 2015-06-04 10:04:08 -07:00
parent ee22e688d5
commit 8c64cbf54e
2 changed files with 21 additions and 23 deletions

View file

@ -361,8 +361,8 @@ private:
// thread function for writing file to drop directory
void writeToDropDirThread(void*);
// thread function for getting drag filename
void getDragInfoThread(void*);
// thread function for sending drag information
void sendDragInfoThread(void*);
// send drag info to new client screen
void sendDragInfo(BaseClientProxy* newScreen);
@ -477,7 +477,7 @@ private:
bool m_ignoreFileTransfer;
bool m_enableDragDrop;
Thread* m_getDragInfoThread;
Thread* m_sendDragInfoThread;
bool m_waitDragInfoThread;
ClientListener* m_clientListener;