2020-01-10 Fred Gleason <fredg@paravelsystems.com>

* Removed all Qt3Support dependencies from the 'RDUpload' class.
	* Removed all Qt3Support dependencies from the 'RDDownload' class.
	* Added a 'test_download' test harness.
This commit is contained in:
Fred Gleason
2020-01-10 17:06:36 -05:00
parent aa7a2ab01d
commit d32aa115f7
9 changed files with 192 additions and 22 deletions

View File

@@ -2,7 +2,7 @@
//
// Upload a File
//
// (C) Copyright 2010,2016-2018 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2010-2020 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -22,7 +22,7 @@
#define RDUPLOAD_H
#include <qobject.h>
#include <q3url.h>
#include <qurl.h>
class RDUpload : public QObject
{
@@ -55,7 +55,7 @@ class RDUpload : public QObject
friend int UploadProgressCallback(void *clientp,double dltotal,double dlnow,
double ultotal,double ulnow);
QString conv_src_filename;
Q3Url conv_dst_url;
QUrl conv_dst_url;
bool conv_aborting;
uint conv_src_size;
};