This repository was archived by the owner on Aug 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,6 @@ class CParameterMgr : private CElement
118118 * @return true if no error occurred, false otherwise.
119119 */
120120 bool load (std::string& strError);
121- virtual bool init (std::string& strError);
122121
123122 // Selection Criteria
124123 CSelectionCriterionType* createSelectionCriterionType (bool bIsInclusive);
@@ -359,6 +358,9 @@ class CParameterMgr : private CElement
359358 CParameterMgr (const CParameterMgr&);
360359 CParameterMgr& operator =(const CParameterMgr&);
361360
361+ // Init
362+ virtual bool init (std::string& strError);
363+
362364 // Logging (done by root)
363365 virtual void doLog (bool bIsWarning, const std::string& strLog) const ;
364366 virtual void nestLog () const ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ CParameterMgrFullConnector::~CParameterMgrFullConnector()
5252bool CParameterMgrFullConnector::start (string& strError)
5353{
5454 // Create data structure & Init flow
55- return _pParameterMgr->load (strError) && _pParameterMgr-> init (strError) ;
55+ return _pParameterMgr->load (strError);
5656}
5757
5858void CParameterMgrFullConnector::setLogger (CParameterMgrFullConnector::ILogger* pLogger)
You can’t perform that action at this time.
0 commit comments