mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
Fix compilation on Windows
This commit is contained in:
parent
09a45abd92
commit
b1fe50e056
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ bool SearchEngine::addPythonPathToEnv() {
|
||||||
void SearchEngine::installPython() {
|
void SearchEngine::installPython() {
|
||||||
setCursor(QCursor(Qt::WaitCursor));
|
setCursor(QCursor(Qt::WaitCursor));
|
||||||
// Download python
|
// Download python
|
||||||
downloadThread *pydownloader = new downloadThread(this);
|
DownloadThread *pydownloader = new DownloadThread(this);
|
||||||
connect(pydownloader, SIGNAL(downloadFinished(QString,QString)), this, SLOT(pythonDownloadSuccess(QString,QString)));
|
connect(pydownloader, SIGNAL(downloadFinished(QString,QString)), this, SLOT(pythonDownloadSuccess(QString,QString)));
|
||||||
connect(pydownloader, SIGNAL(downloadFailure(QString,QString)), this, SLOT(pythonDownloadFailure(QString,QString)));
|
connect(pydownloader, SIGNAL(downloadFailure(QString,QString)), this, SLOT(pythonDownloadFailure(QString,QString)));
|
||||||
pydownloader->downloadUrl("http://python.org/ftp/python/2.6.5/python-2.6.5.msi");
|
pydownloader->downloadUrl("http://python.org/ftp/python/2.6.5/python-2.6.5.msi");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue