comparison OrthancServer/OrthancMoveRequestHandler.cpp @ 1728:4941494b5dd8 db-changes

rename LookupIdentifier as LookupIdentifierExact
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 15:03:52 +0200
parents 1ae29c5e52fb
children b3de74dec2d5
comparison
equal deleted inserted replaced
1727:1ae29c5e52fb 1728:4941494b5dd8
139 } 139 }
140 140
141 std::string value = input.GetValue(tag).AsString(); 141 std::string value = input.GetValue(tag).AsString();
142 142
143 std::list<std::string> ids; 143 std::list<std::string> ids;
144 context_.GetIndex().LookupIdentifier(ids, level, tag, value); 144 context_.GetIndex().LookupIdentifierExact(ids, level, tag, value);
145 145
146 if (ids.size() != 1) 146 if (ids.size() != 1)
147 { 147 {
148 return false; 148 return false;
149 } 149 }