Mercurial > hg > orthanc
diff OrthancServer/OrthancFindRequestHandler.cpp @ 2221:e7beca979562
fix Windows build due to overwriting a macro
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 13 Dec 2016 12:13:12 +0100 |
parents | 3eefb84ac0bd |
children | a3a65de1840f |
line wrap: on
line diff
--- a/OrthancServer/OrthancFindRequestHandler.cpp Tue Dec 13 11:43:35 2016 +0100 +++ b/OrthancServer/OrthancFindRequestHandler.cpp Tue Dec 13 12:13:12 2016 +0100 @@ -486,10 +486,10 @@ const std::string& remoteAet, const std::string& calledAet) { + static const char* LUA_CALLBACK = "IncomingFindRequestFilter"; + LuaScripting::Locker locker(context_.GetLua()); - static const char* CALLBACK = "IncomingFindRequestFilter"; - - if (!locker.GetLua().IsExistingFunction(CALLBACK)) + if (!locker.GetLua().IsExistingFunction(LUA_CALLBACK)) { return false; } @@ -500,7 +500,7 @@ origin["RemoteAet"] = remoteAet; origin["CalledAet"] = calledAet; - LuaFunctionCall call(locker.GetLua(), CALLBACK); + LuaFunctionCall call(locker.GetLua(), LUA_CALLBACK); call.PushDicom(source); call.PushJson(origin); FromDcmtkBridge::ExecuteToDicom(target, call);