瀏覽代碼

Merge pull request #506 from tomdoel/xnat-resource-download-fix

ctkXnatResource download function implemented
Jean-Christophe Fillion-Robin 10 年之前
父節點
當前提交
68a1ce2b42
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Libs/XNAT/Core/ctkXnatResource.cpp

+ 2 - 2
Libs/XNAT/Core/ctkXnatResource.cpp

@@ -83,7 +83,7 @@ void ctkXnatResource::fetchImpl()
 }
 
 //----------------------------------------------------------------------------
-void ctkXnatResource::download(const QString& /*filename*/)
+void ctkXnatResource::download(const QString& filename)
 {
-//  this->session()->download(this, filename);
+  this->session()->download(this, filename);
 }