diff options
Diffstat (limited to 'plugins/Quotes/QuotesProviderGoogleFinance.cpp')
-rw-r--r-- | plugins/Quotes/QuotesProviderGoogleFinance.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Quotes/QuotesProviderGoogleFinance.cpp b/plugins/Quotes/QuotesProviderGoogleFinance.cpp index 25b49f4120..8a129b6b8b 100644 --- a/plugins/Quotes/QuotesProviderGoogleFinance.cpp +++ b/plugins/Quotes/QuotesProviderGoogleFinance.cpp @@ -152,7 +152,7 @@ namespace input.imbue(std::locale("English_United States.1252"));
input >> rdValue;
- if((true == input.bad()) || (true == input.fail()))
+ if ((true == input.bad()) || (true == input.fail()))
{
tistringstream inputSys(rsText);
input.imbue(GetSystemLocale());
@@ -240,7 +240,7 @@ namespace assert(pValue);
- if((pValue) && (true == get_double_value(sDiff,*pValue)))
+ if ((pValue) && (true == get_double_value(sDiff,*pValue)))
{
rInfo.m_nFlags |= nItem;
return true;
@@ -315,10 +315,10 @@ void CQuotesProviderGoogleFinance::RefreshQuotes(TContracts& anContacts) tstring sFullURL = build_url(hContact,sURL);
// LogIt(Info,sFullURL);
- if((true == http.OpenURL(sFullURL)) && (true == IsOnline()))
+ if ((true == http.OpenURL(sFullURL)) && (true == IsOnline()))
{
tstring sHTML;
- if((true == http.ReadResponce(sHTML)) && (true == IsOnline()))
+ if ((true == http.ReadResponce(sHTML)) && (true == IsOnline()))
{
// LogIt(Info,sHTML);
|