comparison OrthancServer/QueryRetrieveHandler.cpp @ 3920:82e88ff003d7 c-get

merge default -> c-get
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 14:58:24 +0200
parents 2effa961f67f
children
comparison
equal deleted inserted replaced
3918:dba48c162b7b 3920:82e88ff003d7
80 80
81 // Secondly, possibly fix the query with the user-provider Lua callback 81 // Secondly, possibly fix the query with the user-provider Lua callback
82 FixQueryLua(fixed, context_, modality_.GetApplicationEntityTitle()); 82 FixQueryLua(fixed, context_, modality_.GetApplicationEntityTitle());
83 83
84 { 84 {
85 DicomControlUserConnection connection(localAet_, modality_); 85 DicomAssociationParameters params(localAet_, modality_);
86 DicomControlUserConnection connection(params);
86 connection.Find(answers_, level_, fixed, findNormalized_); 87 connection.Find(answers_, level_, fixed, findNormalized_);
87 } 88 }
88 89
89 done_ = true; 90 done_ = true;
90 } 91 }