MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / pushDownloadTask

Method pushDownloadTask

Settings/TLESourceTab.cpp:230–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228}
229
230bool
231TLESourceTab::pushDownloadTask(void)
232{
233#ifdef HAVE_CURL
234 TLEDownloaderTask *task = new TLEDownloaderTask(
235 QString::fromStdString(this->currSrc->url));
236 this->taskController->process(
237 "Download TLEs (" + QString::fromStdString(this->currSrc->name) + ")",
238 task);
239 return true;
240#else // HAVE_CURL
241 QMessageBox::critical(
242 this,
243 "Download TLEs",
244 "Download support was disabled at compile time.");
245 return false;
246#endif // HAVE_CURL
247}
248
249void
250TLESourceTab::refreshDownloadStatus(void)

Callers 2

triggerDownloadTLEsMethod · 0.95
downloadNextMethod · 0.95

Calls 1

processMethod · 0.45

Tested by

no test coverage detected