summaryrefslogtreecommitdiff
path: root/src/memos.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-02-14 20:58:01 -0500
committerAdam <Adam@anope.org>2013-02-14 20:58:01 -0500
commitfc1d7ea89b5beed96022499fe7fa86bef7cf2aad (patch)
tree0208b9f5e153191742d15c51d6ca98737d8f7eb9 /src/memos.cpp
parent391f2822c8f6da7d6ffa8114817a8baf2aa265d5 (diff)
Switch Destroy methods to delete
Diffstat (limited to 'src/memos.cpp')
-rw-r--r--src/memos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memos.cpp b/src/memos.cpp
index 1f8b00fff..065a644f6 100644
--- a/src/memos.cpp
+++ b/src/memos.cpp
@@ -101,7 +101,7 @@ void MemoInfo::Del(unsigned index)
{
if (index >= this->memos->size())
return;
- this->GetMemo(index)->Destroy();
+ delete this->GetMemo(index);
}
bool MemoInfo::HasIgnore(User *u)