diff options
Diffstat (limited to 'plugins/Quotes/src/QuotesProviderBase.cpp')
-rw-r--r-- | plugins/Quotes/src/QuotesProviderBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Quotes/src/QuotesProviderBase.cpp b/plugins/Quotes/src/QuotesProviderBase.cpp index 92b5099f70..3751454b58 100644 --- a/plugins/Quotes/src/QuotesProviderBase.cpp +++ b/plugins/Quotes/src/QuotesProviderBase.cpp @@ -1,6 +1,6 @@ #include "StdAfx.h"
-extern int g_nStatus;
+extern bool g_bAutoUpdate;
extern HANDLE g_hEventWorkThreadStop;
@@ -235,7 +235,7 @@ const tstring& CQuotesProviderBase::GetURL()const bool CQuotesProviderBase::IsOnline()
{
- return ID_STATUS_ONLINE == g_nStatus;
+ return g_bAutoUpdate;
}
void CQuotesProviderBase::AddContact(MCONTACT hContact)
|