diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-08-23 00:38:57 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-08-23 00:38:57 +0300 |
commit | b3781cf063e534b50b393dc9908900bcde78912c (patch) | |
tree | 652e1a08012c49ce7413b4220bde0d10b0889833 /plugins/Quotes/src/QuotesProviderGoogle.cpp | |
parent | bf9981cdfdaf818530c180d6975e0f6a53dcc944 (diff) |
Quotes: hidden setting and not used icon removed (fixes #292)
Diffstat (limited to 'plugins/Quotes/src/QuotesProviderGoogle.cpp')
-rw-r--r-- | plugins/Quotes/src/QuotesProviderGoogle.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/Quotes/src/QuotesProviderGoogle.cpp b/plugins/Quotes/src/QuotesProviderGoogle.cpp index 63b60b3e8b..94d39e5d46 100644 --- a/plugins/Quotes/src/QuotesProviderGoogle.cpp +++ b/plugins/Quotes/src/QuotesProviderGoogle.cpp @@ -145,15 +145,9 @@ void CQuotesProviderGoogle::RefreshQuotes(TContracts& anContacts) CHTTPSession http;
tstring sURL = GetURL();
- bool bUseExtendedStatus = CModuleInfo::GetInstance().GetExtendedStatusFlag();
-
for (TContracts::const_iterator i = anContacts.begin(); i != anContacts.end() && IsOnline(); ++i) {
MCONTACT hContact = *i;
- if (bUseExtendedStatus) {
- SetContactStatus(hContact, ID_STATUS_OCCUPIED);
- }
-
tstring sFullURL = build_url(hContact, sURL);
// LogIt(Info,sFullURL);
if ((true == http.OpenURL(sFullURL)) && (true == IsOnline())) {
|