Moved CUtils::Ellipsize() into CString class

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@245 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-05-07 09:43:26 +00:00
parent 24950d24e4
commit 11ae1b690f
4 changed files with 6 additions and 24 deletions
+1 -1
View File
@@ -743,7 +743,7 @@ void CUserSock::UserCommand(const CString& sLine) {
for (unsigned int b = 0; b < Modules.size(); b++) {
Table.AddRow();
Table.SetCell("Name", Modules[b]->GetModName());
Table.SetCell("Description", CUtils::Ellipsize(Modules[b]->GetDescription(), 128));
Table.SetCell("Description", Modules[b]->GetDescription().Ellipsize(128));
}
unsigned int uTableIdx = 0; CString sLine;