From 653fe468f0b9506d391db51d68e7490af54bb94c Mon Sep 17 00:00:00 2001 From: prozacx Date: Mon, 4 Jul 2005 23:27:08 +0000 Subject: [PATCH] Renamed RightTrim() to TrimRight() git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@408 726aef4b-f618-498e-8847-2d620e286838 --- FileUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FileUtils.cpp b/FileUtils.cpp index bf9cfd4f..5908198b 100644 --- a/FileUtils.cpp +++ b/FileUtils.cpp @@ -15,7 +15,7 @@ void CFile::SetFileName(const CString& sLongName) { m_iFD = -1; m_sShortName = sLongName; - m_sShortName.RightTrim("/"); + m_sShortName.TrimRight("/"); CString::size_type uPos = m_sShortName.rfind('/'); if (uPos != CString::npos) {