2022-11-16 Fred Gleason <fredg@paravelsystems.com>

* Added a 'QString *err_msg' argument to 'RDDownload::runDownload()'.
	* Added a 'QString *err_msg' argument to 'RDDownload::runUpload()'.
	* Fixed regression in rdcatch(1) that caused upload and download
	events to fail to show exit status correctly.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-11-16 15:31:40 -05:00
parent 63121ab15d
commit 7beec8dba1
13 changed files with 126 additions and 187 deletions

View File

@@ -96,12 +96,12 @@ class MainObject : public QObject
//
void RunBatch(RDCmdSwitch *cmd);
void RunImport(CatchEvent *evt);
void RunDownload(CatchEvent *evt);
void RunUpload(CatchEvent *evt);
bool RunDownload(CatchEvent *evt,QString *err_msg);
bool RunUpload(CatchEvent *evt,QString *err_msg);
CatchEvent *batch_event;
bool Export(CatchEvent *evt);
bool Export(CatchEvent *evt,QString *err_msg);
QString GetExportCmd(CatchEvent *evt,QString *tempname);
bool Import(CatchEvent *evt);
bool Import(CatchEvent *evt,QString *err_msg);
QString GetImportCmd(CatchEvent *evt,QString *tempname);
//