Subversion Repositories spk

Rev

Rev 7 | Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7 Rev 8
Line 24... Line 24...
24
		delete m_pInstance;
24
		delete m_pInstance;
25
	}
25
	}
26
	m_pInstance = 0;
26
	m_pInstance = 0;
27
}
27
}
28
 
28
 
29
void CLog::log(const CyString &sLogText)
29
void CLog::log(const Utils::String &sLogText)
30
{
30
{
31
	CLog *pLogger = CLog::create();
31
	CLog *pLogger = CLog::create();
32
	pLogger->_log(sLogText);
32
	pLogger->_log(sLogText);
33
}
33
}
34
 
34
 
35
void CLog::displayLog(const CyString &sLogText) const
35
void CLog::displayLog(const Utils::String &sLogText) const
36
{
36
{
37
}
37
}
38
 
38
 
39
void CLog::_log(const CyString &sLogText)
39
void CLog::_log(const Utils::String &sLogText)
40
{
40
{
41
	SLog *log = new SLog;
41
	SLog *log = new SLog;
42
	log->sText = sLogText;
42
	log->sText = sLogText;
43
	m_lLogs.push_back(log);
43
	m_lLogs.push_back(log);
44
 
44