diff OrthancServer/DatabaseWrapper.h @ 1727:1ae29c5e52fb db-changes

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 14:50:10 +0200
parents a7c05bbfaf6a
children 4941494b5dd8
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapper.h	Tue Oct 20 11:21:36 2015 +0200
+++ b/OrthancServer/DatabaseWrapper.h	Tue Oct 20 14:50:10 2015 +0200
@@ -316,10 +316,11 @@
     }
 
     virtual void LookupIdentifier(std::list<int64_t>& target,
+                                  ResourceType level,
                                   const DicomTag& tag,
                                   const std::string& value)
     {
-      base_.LookupIdentifier(target, tag, value);
+      base_.LookupIdentifier(target, level, tag, value);
     }
 
     virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,