diff Platforms/Generic/WebServiceCommandBase.cpp @ 291:87376a645ee1 am-2

renaming
author am@osimis.io
date Thu, 30 Aug 2018 17:06:22 +0200
parents dc1beee33134
children 3897f9f28cfa
line wrap: on
line diff
--- a/Platforms/Generic/WebServiceCommandBase.cpp	Thu Aug 30 16:56:08 2018 +0200
+++ b/Platforms/Generic/WebServiceCommandBase.cpp	Thu Aug 30 17:06:22 2018 +0200
@@ -31,7 +31,7 @@
                                                const std::string& uri,
                                                const IWebService::Headers& headers,
                                                Orthanc::IDynamicObject* payload /* takes ownership */,
-                                               BasicNativeApplicationContext& context) :
+                                               NativeStoneApplicationContext& context) :
     IObservable(broker),
     callback_(callback),
     parameters_(parameters),
@@ -48,7 +48,7 @@
 
   void WebServiceCommandBase::Commit()
   {
-    BasicNativeApplicationContext::GlobalMutexLocker lock(context_);  // we want to make sure that, i.e, the UpdateThread is not triggered while we are updating the "model" with the result of a WebServiceCommand
+    NativeStoneApplicationContext::GlobalMutexLocker lock(context_);  // we want to make sure that, i.e, the UpdateThread is not triggered while we are updating the "model" with the result of a WebServiceCommand
 
     if (success_)
     {