diff options
| author | Niklas Goby | 2011-03-08 16:35:24 +0100 |
|---|---|---|
| committer | Niklas Goby | 2011-03-08 16:35:24 +0100 |
| commit | f719e4dc1a043635830e5e6c60f037d7d6006f24 (patch) | |
| tree | ff511a526f6d454ae131d61410abf48f5edaf531 /src/DownloadManager.cpp | |
| parent | added the getSysInfo Method getIPAddress: (diff) | |
| parent | improvements..improvements.... (diff) | |
| download | fbgui-f719e4dc1a043635830e5e6c60f037d7d6006f24.tar.gz fbgui-f719e4dc1a043635830e5e6c60f037d7d6006f24.tar.xz fbgui-f719e4dc1a043635830e5e6c60f037d7d6006f24.zip | |
Merge branch 'master' of git.openslx.org:lsfks/master-teamprojekt/fbgui
Diffstat (limited to 'src/DownloadManager.cpp')
| -rw-r--r-- | src/DownloadManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp index 2b1cc8a..eec6909 100644 --- a/src/DownloadManager.cpp +++ b/src/DownloadManager.cpp @@ -128,9 +128,9 @@ DownloadManager::DownloadManager() downloadDir = QDir(downloadPath); // Check if downloadPath exists, if not create it. if (!downloadDir.exists()){ - if (debug) qDebug() << downloadDir.path() << "doesn't exist."; + if (debug) qDebug() << "Download directory: " << downloadDir.path() << "doesn't exist."; QDir::current().mkdir(downloadPath); if (downloadDir.exists() && debug) qDebug() << "Created download directory: " << downloadPath; } - else if (debug) qDebug() << downloadDir.path() << "exists."; + else if (debug) qDebug() << "Download directory: " << downloadDir.path() << "exists."; } |
