diff options
author | Kirill Volinsky <Mataes2007@gmail.com> | 2018-07-27 10:35:17 +0300 |
---|---|---|
committer | Kirill Volinsky <Mataes2007@gmail.com> | 2018-07-27 10:35:17 +0300 |
commit | 29d414e39c3aa15f4877e597c1cac2d83b199078 (patch) | |
tree | b54b2ce556715727bd21c8e5dd8852b925a7bc10 /plugins/CurrencyRates/src/ModuleInfo.cpp | |
parent | 24cc466028da7e224c12babfbfe425a694052be9 (diff) |
CurrencyRates: quotes replaced to currencyrates
Diffstat (limited to 'plugins/CurrencyRates/src/ModuleInfo.cpp')
-rw-r--r-- | plugins/CurrencyRates/src/ModuleInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/CurrencyRates/src/ModuleInfo.cpp b/plugins/CurrencyRates/src/ModuleInfo.cpp index f5679630f6..a44eda3d78 100644 --- a/plugins/CurrencyRates/src/ModuleInfo.cpp +++ b/plugins/CurrencyRates/src/ModuleInfo.cpp @@ -42,9 +42,9 @@ void CModuleInfo::OnMirandaShutdown() } } -CModuleInfo::TQuotesProvidersPtr CModuleInfo::GetQuoteProvidersPtr() +CModuleInfo::TCurrencyRatesProvidersPtr CModuleInfo::GetCurrencyRateProvidersPtr() { - static TQuotesProvidersPtr pProviders(new CQuotesProviders); + static TCurrencyRatesProvidersPtr pProviders(new CCurrencyRatesProviders); return pProviders; } @@ -84,13 +84,13 @@ bool CModuleInfo::Verify() return false; if (!GetXMLEnginePtr()) { - Quotes_MessageBox(nullptr, TranslateT("Miranda could not load Quotes plugin. XML parser is missing."), MB_OK | MB_ICONERROR); + CurrencyRates_MessageBox(nullptr, TranslateT("Miranda could not load CurrencyRates plugin. XML parser is missing."), MB_OK | MB_ICONERROR); return false; } if (!g_pHTMLEngine && (false == CHTMLParserMS::IsInstalled())) { - Quotes_MessageBox(nullptr, - TranslateT("Miranda could not load Quotes plugin. Microsoft HTML parser is missing."), + CurrencyRates_MessageBox(nullptr, + TranslateT("Miranda could not load CurrencyRates plugin. Microsoft HTML parser is missing."), MB_YESNO | MB_ICONQUESTION); return false; } |