diff options
-rw-r--r-- | plugins/MirFox/src/MirfoxData.cpp | 16 |
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;
}
|