diff options
| author | Jonathan Bauer | 2011-03-08 00:19:05 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2011-03-08 00:19:05 +0100 |
| commit | 56355afd7d4bc9709ddf4e2cb34a51913f039a9d (patch) | |
| tree | eee151b27a58b3f2d868f7c9be77f8e58fcae32f /src/DownloadManager.cpp | |
| parent | jso (diff) | |
| download | fbgui-56355afd7d4bc9709ddf4e2cb34a51913f039a9d.tar.gz fbgui-56355afd7d4bc9709ddf4e2cb34a51913f039a9d.tar.xz fbgui-56355afd7d4bc9709ddf4e2cb34a51913f039a9d.zip | |
download directory option preparations (sysInfo: cant test compiling right now... should me mostly correct)
Diffstat (limited to 'src/DownloadManager.cpp')
| -rw-r--r-- | src/DownloadManager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp index 61b63d7..b5c11a2 100644 --- a/src/DownloadManager.cpp +++ b/src/DownloadManager.cpp @@ -1,11 +1,14 @@ #include "DownloadManager.h" + +// ---------------------------------------------------------------------------------------- void DownloadManager::downloadFile(QString& filename){ if (debug) qDebug() << "DM received signal for: " << filename; QUrl fileUrl; fileUrl = baseURL.resolved(QUrl(filename)); this->processDownloadRequest(fileUrl); } +// ---------------------------------------------------------------------------------------- void DownloadManager::downloadFile(QUrl& fileUrl){ if (debug) qDebug() << "Received downloadFile signal for:" << fileUrl; this->processDownloadRequest(fileUrl); |
