ソースを参照

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);
 }