mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Changed all references to std::string over to CString
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@240 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -9,16 +9,16 @@ public:
|
||||
MODCONSTRUCTOR(CRawMod) {}
|
||||
virtual ~CRawMod() {}
|
||||
|
||||
virtual string GetDescription() {
|
||||
virtual CString GetDescription() {
|
||||
return "View all of the raw traffic.";
|
||||
}
|
||||
|
||||
virtual bool OnRaw(string& sLine) {
|
||||
virtual bool OnRaw(CString& sLine) {
|
||||
PutModule("IRC -> [" + sLine + "]");
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool OnUserRaw(string& sLine) {
|
||||
virtual bool OnUserRaw(CString& sLine) {
|
||||
PutModule("YOU -> [" + sLine + "]");
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user