| 1382 | } |
| 1383 | |
| 1384 | void ExternalCommandProcessor::DelSvcComment(double, const std::vector<String>& arguments) |
| 1385 | { |
| 1386 | int id = Convert::ToLong(arguments[0]); |
| 1387 | Log(LogNotice, "ExternalCommandProcessor") |
| 1388 | << "Removing comment ID " << arguments[0]; |
| 1389 | |
| 1390 | String rid = Comment::GetCommentIDFromLegacyID(id); |
| 1391 | Comment::RemoveComment(rid); |
| 1392 | } |
| 1393 | |
| 1394 | void ExternalCommandProcessor::DelAllHostComments(double, const std::vector<String>& arguments) |
| 1395 | { |