# HG changeset patch # User Sebastien Jodogne # Date 1480425990 -3600 # Node ID bcb6d8e0e08982d2139ee8ab5addfc9864baff8d # Parent 9e5358dd4dca1228c609403fd8cf1b22db1fca5b fix diff -r 9e5358dd4dca -r bcb6d8e0e089 Plugin/Cache/CacheManager.cpp --- a/Plugin/Cache/CacheManager.cpp Tue Nov 29 13:29:12 2016 +0100 +++ b/Plugin/Cache/CacheManager.cpp Tue Nov 29 14:26:30 2016 +0100 @@ -20,7 +20,7 @@ #include "CacheManager.h" -#include "../../Orthanc/Core/Toolbox.h" +#include "../../Orthanc/Core/SystemToolbox.h" #include "../../Orthanc/Core/SQLite/Transaction.h" #include @@ -353,7 +353,7 @@ // Store the cached content on the disk const char* data = content.size() ? &content[0] : NULL; - std::string uuid = Toolbox::GenerateUuid(); + std::string uuid = SystemToolbox::GenerateUuid(); pimpl_->storage_.Create(uuid, data, content.size(), Orthanc::FileContentType_Unknown); bool ok = true;