mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Moved CUtils::ToString() into CString class
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@249 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -26,6 +26,9 @@
|
||||
* better solution then plain text.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.21 2005/05/08 06:42:02 prozacx
|
||||
* Moved CUtils::ToString() into CString class
|
||||
*
|
||||
* Revision 1.20 2005/05/08 04:30:14 prozacx
|
||||
* Moved CUtils::Trim() into CString class
|
||||
*
|
||||
@@ -302,7 +305,7 @@ public:
|
||||
|
||||
CString SpoofChanMsg( const CString & sChannel, const CString & sMesg )
|
||||
{
|
||||
CString sReturn = ":*" + GetModName() + "!znc@znc.com PRIVMSG " + sChannel + " :" + CUtils::ToString( time( NULL ) ) + " " + sMesg;
|
||||
CString sReturn = ":*" + GetModName() + "!znc@znc.com PRIVMSG " + sChannel + " :" + CString::ToString( time( NULL ) ) + " " + sMesg;
|
||||
return( sReturn );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user