diff Plugin/Cache/CacheManager.cpp @ 188:a11bf02917e9

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 11 Apr 2018 15:19:24 +0200
parents 81f16c5667ba
children 993dd140bd30
line wrap: on
line diff
--- a/Plugin/Cache/CacheManager.cpp	Thu Mar 22 17:03:48 2018 +0100
+++ b/Plugin/Cache/CacheManager.cpp	Wed Apr 11 15:19:24 2018 +0200
@@ -21,7 +21,7 @@
 
 #include "CacheManager.h"
 
-#include "../../Orthanc/Core/SystemToolbox.h"
+#include "../../Orthanc/Core/Toolbox.h"
 #include "../../Orthanc/Core/SQLite/Transaction.h"
 
 #include <boost/lexical_cast.hpp>
@@ -354,7 +354,7 @@
 
     // Store the cached content on the disk
     const char* data = content.size() ? &content[0] : NULL;
-    std::string uuid = SystemToolbox::GenerateUuid();
+    std::string uuid = Toolbox::GenerateUuid();
     pimpl_->storage_.Create(uuid, data, content.size(), Orthanc::FileContentType_Unknown);
 
     bool ok = true;