From 183a7351456940d01f14a49112ddeb68ffc4693a Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Mon, 5 Aug 2013 03:29:50 +0200 Subject: Runnable 1.6 instances! --- libutil/src/dlqueue.cpp | 8 +------- libutil/src/pathutils.cpp | 8 ++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'libutil/src') diff --git a/libutil/src/dlqueue.cpp b/libutil/src/dlqueue.cpp index d73dc356..65e0e31e 100644 --- a/libutil/src/dlqueue.cpp +++ b/libutil/src/dlqueue.cpp @@ -1,4 +1,5 @@ #include "include/dlqueue.h" +#include DownloadJob::DownloadJob (QUrl url, QString target_path, @@ -48,13 +49,6 @@ JobPtr DownloadJob::create (QSharedPointer net_mgr, return JobPtr ( new DownloadJob ( net_mgr, url, target_path, expected_md5 ) ); } -bool DownloadJob::ensurePathExists(QString filenamepath) -{ - QFileInfo a ( filenamepath ); - QDir dir; - return (dir.mkpath ( a.path() )); -} - void DownloadJob::start() { if ( m_save_to_file ) diff --git a/libutil/src/pathutils.cpp b/libutil/src/pathutils.cpp index 7ba7397c..083fe98d 100644 --- a/libutil/src/pathutils.cpp +++ b/libutil/src/pathutils.cpp @@ -65,3 +65,11 @@ QString DirNameFromString(QString string, QString inDir) } return dirName; } + +bool ensurePathExists(QString filenamepath) +{ + QFileInfo a ( filenamepath ); + QDir dir; + return (dir.mkpath ( a.path() )); +} + -- cgit