summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-08-01 23:18:08 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-08-01 23:18:08 +0300
commit66711c5f728ee436e13b66e7328b860cf7ba90eb (patch)
treea401c126adf286af7ed5711905e62a0a27fcd4de
parent648fba0f4258b3fc8351a307b2eb75d2f1b898b5 (diff)
fixes #1528 (MirFox: protocol names)
-rw-r--r--plugins/MirFox/src/MirfoxData.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/plugins/MirFox/src/MirfoxData.cpp b/plugins/MirFox/src/MirfoxData.cpp
index c1734eb3b1..835f3d8c07 100644
--- a/plugins/MirFox/src/MirfoxData.cpp
+++ b/plugins/MirFox/src/MirfoxData.cpp
@@ -464,24 +464,18 @@ MirfoxData::initializeMirfoxData()
/*static*/ bool
MirfoxData::shouldProtoBeActiveByName(std::string protoName)
{
- if (
- boost::iequals("MetaContacts", protoName)
- || boost::iequals("ExchangeRates", protoName)
- || boost::iequals("mTV", protoName)
- || boost::iequals("Quotes", protoName)
+ if ( boost::iequals("MetaContacts", protoName)
+ || boost::iequals("CurrencyRates", protoName)
|| boost::iequals("Weather", protoName)
|| boost::iequals("GmailMNotifier", protoName)
- || boost::iequals("RSSNews", protoName)
+ || boost::iequals("NewsAggregator", protoName)
|| boost::iequals("PING", protoName)
- || boost::iequals("WorldTime", protoName)
|| boost::iequals("NIM_Contact", protoName)
|| boost::iequals("POP3", protoName)
|| boost::iequals("webview", protoName)
|| boost::iequals("YAMN", protoName)
- || boost::iequals("lotusnotify", protoName)
- || boost::iequals("webinfo", protoName)
- || boost::iequals("infofromweb", protoName)
- ){
+ || boost::iequals("lotusnotify", protoName))
+ {
return false;
}