diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 19:27:19 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 19:27:19 +0000 |
commit | 0549fb41568be278319326ae55be69018e2e5aa8 (patch) | |
tree | 063b63d39d8876017a9d04b3b49782151112e6ba /src/modules/m_customtitle.cpp | |
parent | 2ccbc50453f3e70397299b83ba28d0289535b947 (diff) |
DELETE() -> delete
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7973 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_customtitle.cpp')
-rw-r--r-- | src/modules/m_customtitle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_customtitle.cpp b/src/modules/m_customtitle.cpp index df142a089..73f2cda87 100644 --- a/src/modules/m_customtitle.cpp +++ b/src/modules/m_customtitle.cpp @@ -71,7 +71,7 @@ bool OneOfMatches(const char* host, const char* ip, const char* hostlist) if (text) { user->Shrink("ctitle"); - DELETE(text); + delete text; } text = new std::string(title); @@ -173,7 +173,7 @@ class ModuleCustomTitle : public Module if (ctitle) { user->Shrink("ctitle"); - DELETE(ctitle); + delete ctitle; } } @@ -188,7 +188,7 @@ class ModuleCustomTitle : public Module if (ctitle) { user->Shrink("ctitle"); - DELETE(ctitle); + delete ctitle; } } } |