diff options
Diffstat (limited to 'src/memos.cpp')
-rw-r--r-- | src/memos.cpp | 2 |
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) |