summaryrefslogtreecommitdiff
path: root/plugins/Quotes/src/CurrencyConverter.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-02-25 13:47:23 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-02-25 13:47:23 +0000
commit8bf03133314064ec052873b01647c79b69a5b681 (patch)
tree3fa208ebec566236558fcbead39709ba44ac40fe /plugins/Quotes/src/CurrencyConverter.cpp
parent42095fb5cb7228f9dfb94965988029fd7f47b793 (diff)
more shit removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@16336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Quotes/src/CurrencyConverter.cpp')
-rw-r--r--plugins/Quotes/src/CurrencyConverter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Quotes/src/CurrencyConverter.cpp b/plugins/Quotes/src/CurrencyConverter.cpp
index 8c46d37fc3..874eaa626b 100644
--- a/plugins/Quotes/src/CurrencyConverter.cpp
+++ b/plugins/Quotes/src/CurrencyConverter.cpp
@@ -21,7 +21,6 @@ static CQuotesProviderGoogle* get_google_provider()
return NULL;
}
-
CQuotesProviderGoogle::CQuoteSection get_quotes(const CQuotesProviderGoogle* pProvider = NULL)
{
if (NULL == pProvider)
@@ -109,11 +108,11 @@ INT_PTR CALLBACK CurrencyConverterDlgProc(HWND hDlg, UINT msg, WPARAM wp, LPARAM
LRESULT nFrom = ::SendMessage(hcbxFrom, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(pszName));
LRESULT nTo = ::SendMessage(hcbxTo, CB_ADDSTRING, 0, reinterpret_cast<LPARAM>(pszName));
- if (0 == quotes_stricmp(rQuote.GetID().c_str(), sFromQuoteID.c_str())) {
+ if (0 == mir_tstrcmpi(rQuote.GetID().c_str(), sFromQuoteID.c_str())) {
::SendMessage(hcbxFrom, CB_SETCURSEL, nFrom, 0);
}
- if (0 == quotes_stricmp(rQuote.GetID().c_str(), sToQuoteID.c_str())) {
+ if (0 == mir_tstrcmpi(rQuote.GetID().c_str(), sToQuoteID.c_str())) {
::SendMessage(hcbxTo, CB_SETCURSEL, nTo, 0);
}
}