diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-27 14:40:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-27 14:40:29 +0300 |
commit | 226f2fceddb5b81d5ba7a16729b4f07e53cfafb4 (patch) | |
tree | 77d177e5517eb8267c2755b97f4fe9a3d37d1a37 /plugins/CmdLine/src | |
parent | 15c49e3fc4cf033fffbf79e9f68a0405d5a95d14 (diff) |
obsolete services from m_ignore.h converted into functions
Diffstat (limited to 'plugins/CmdLine/src')
-rw-r--r-- | plugins/CmdLine/src/mimcmd_handlers.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp index 89f1fb131e..4aeaa16d74 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -1449,7 +1449,10 @@ void HandleIgnoreCommand(PCommand command, TArgument *argv, int argc, PReply rep for (int i = 3; i < argc; i++) {
MCONTACT hContact = ParseContactParam(argv[i]);
if (hContact) {
- CallService(block ? MS_IGNORE_IGNORE : MS_IGNORE_UNIGNORE, (WPARAM)hContact, IGNOREEVENT_ALL);
+ if (block)
+ Ignore_Ignore(hContact, IGNOREEVENT_ALL);
+ else
+ Ignore_Allow(hContact, IGNOREEVENT_ALL);
}
}
|