diff options
author | unknown <b0ris@b0ris-satellite.(none)> | 2011-12-03 19:14:40 +0200 |
---|---|---|
committer | unknown <b0ris@b0ris-satellite.(none)> | 2011-12-03 19:14:40 +0200 |
commit | 2cb38f2d082f765d87f8a73b09957c3fd839afa0 (patch) | |
tree | aea2e7b4076277c1a49c02b0ce52aa8b719f02d7 /client/FileOpThread.cpp | |
parent | 5a605e79cb440dfea4ae50d107f9b1082c319e9c (diff) |
FIX files downloading on Windows
Diffstat (limited to 'client/FileOpThread.cpp')
-rw-r--r-- | client/FileOpThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/FileOpThread.cpp b/client/FileOpThread.cpp index bd0b929..3817e56 100644 --- a/client/FileOpThread.cpp +++ b/client/FileOpThread.cpp @@ -78,7 +78,7 @@ void FileOpThread::run() QEventLoop loop; connect(downloadClient, SIGNAL(downloadFinished()), &loop, SLOT(quit())); downloadClient->Download(files); - loop.exec(QEventLoop::ExcludeUserInputEvents | QEventLoop::ExcludeSocketNotifiers); + loop.exec(QEventLoop::ExcludeUserInputEvents); } else { |