Moved CUtils::ToString() into CString class

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@248 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-05-08 06:24:40 +00:00
parent 511832a8d6
commit 223a660ca1
11 changed files with 49 additions and 83 deletions

View File

@@ -107,8 +107,8 @@ void CModule::ListTimers() {
Table.AddRow();
Table.SetCell("Name", pTimer->GetName());
Table.SetCell("Secs", CUtils::ToString(pTimer->GetInterval()));
Table.SetCell("Cycles", ((uCycles) ? CUtils::ToString(uCycles) : "INF"));
Table.SetCell("Secs", CString::ToString(pTimer->GetInterval()));
Table.SetCell("Cycles", ((uCycles) ? CString::ToString(uCycles) : "INF"));
Table.SetCell("Description", pTimer->GetDescription());
}