changeset 157:bcb6d8e0e089

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 29 Nov 2016 14:26:30 +0100
parents 9e5358dd4dca
children ca2dd8d1a73a
files Plugin/Cache/CacheManager.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <boost/lexical_cast.hpp>
@@ -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;