From: Anthony Geay Date: Mon, 23 Mar 2020 22:23:28 +0000 (+0100) Subject: Correct bug on GUI X-Git-Tag: V9_6_0a1~7^2~38 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d211688052f32d421ebd6aecace6b17bef3a6aed;p=modules%2Fyacs.git Correct bug on GUI --- diff --git a/src/runtime/SalomeHPContainer.cxx b/src/runtime/SalomeHPContainer.cxx index a35342547..8e86b3abe 100644 --- a/src/runtime/SalomeHPContainer.cxx +++ b/src/runtime/SalomeHPContainer.cxx @@ -280,7 +280,7 @@ int SalomeHPContainer::getNumberOfCoresPerWorker() const return _sct.getNumberOfCoresPerWorker(); } -std::map SalomeHPContainer::getResourcePropertiesSpe(const std::string& name) const +std::map SalomeHPContainer::getResourceProperties(const std::string& name) const { return _sct.getResourceProperties(name); } diff --git a/src/runtime/SalomeHPContainer.hxx b/src/runtime/SalomeHPContainer.hxx index 83702784f..692770f80 100644 --- a/src/runtime/SalomeHPContainer.hxx +++ b/src/runtime/SalomeHPContainer.hxx @@ -108,7 +108,7 @@ namespace YACS // #ifndef SWIG void forYourTestsOnly(ForTestOmlyHPContCls *data) const; - std::map getResourcePropertiesSpe(const std::string& name) const; + std::map getResourceProperties(const std::string& name) const; void addComponentNameSpe(const std::string& name); void checkCapabilityToDealWithSpe(const ComponentInstance *inst) const throw(YACS::Exception); std::size_t locateTask(const Task *askingNode) const { return _launchModeType->locateTask(askingNode); }