1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 09:43:13 +02:00

The next of a few "CBX OCDing over code style" commits, focusing on src/core/hs_* and src/core/ms_*, plus some tiny fallout caused by changing the FOREACH_* macros.

This commit is contained in:
Naram Qashat
2010-06-26 01:38:19 -04:00
parent e447933c02
commit 6dc3af5db4
23 changed files with 80 additions and 128 deletions
+2 -5
View File
@@ -7,9 +7,8 @@
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
*
*/
/*************************************************************************/
#include "module.h"
@@ -44,15 +43,13 @@ class CommandMSCancel : public Command
int i;
for (i = mi->memos.size() - 1; i >= 0; --i)
{
if ((mi->memos[i]->HasFlag(MF_UNREAD)) && !stricmp(mi->memos[i]->sender.c_str(), u->Account()->display) && !mi->memos[i]->HasFlag(MF_NOTIFYS))
{
FOREACH_MOD(I_OnMemoDel, OnMemoDel(findnick(name)->nc, mi, mi->memos[i]->number))
FOREACH_MOD(I_OnMemoDel, OnMemoDel(findnick(name)->nc, mi, mi->memos[i]->number));
delmemo(mi, mi->memos[i]->number);
notice_lang(Config.s_MemoServ, u, MEMO_CANCELLED, name);
return MOD_CONT;
}
}
notice_lang(Config.s_MemoServ, u, MEMO_CANCEL_NONE);
}