mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Migrated away from CString::ToString() in favor of explicit constructors
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@669 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -24,6 +24,9 @@
|
||||
* better solution then plain text.
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.29 2006/02/25 09:43:35 prozacx
|
||||
* Migrated away from CString::ToString() in favor of explicit constructors
|
||||
*
|
||||
* Revision 1.28 2006/02/11 11:55:55 imaginos
|
||||
* fixed wrong type being used on 64bit
|
||||
*
|
||||
@@ -323,7 +326,7 @@ public:
|
||||
|
||||
CString SpoofChanMsg( const CString & sChannel, const CString & sMesg )
|
||||
{
|
||||
CString sReturn = ":*" + GetModName() + "!znc@znc.com PRIVMSG " + sChannel + " :" + CString::ToString( time( NULL ) ) + " " + sMesg;
|
||||
CString sReturn = ":*" + GetModName() + "!znc@znc.com PRIVMSG " + sChannel + " :" + CString( time( NULL ) ) + " " + sMesg;
|
||||
return( sReturn );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user