diff options
author | George Hazan <ghazan@miranda.im> | 2021-05-01 19:39:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-05-01 19:39:21 +0300 |
commit | 23af445499887c5a557ab65c6ec3aec63632527e (patch) | |
tree | 5d19808e0b213379c929d00821d569148dcd10a5 /protocols/Weather/src | |
parent | b2ede364067e1317b34c9227f3de3e5f1451202e (diff) |
here variables' names should be fixed too
Diffstat (limited to 'protocols/Weather/src')
-rw-r--r-- | protocols/Weather/src/weather_data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/src/weather_data.cpp b/protocols/Weather/src/weather_data.cpp index 472cf3073c..57bc17830e 100644 --- a/protocols/Weather/src/weather_data.cpp +++ b/protocols/Weather/src/weather_data.cpp @@ -187,7 +187,7 @@ void ConvertDataValue(WIDATAITEM *UpdateData, wchar_t *Data) // temperature if (!mir_wstrcmp(UpdateData->Name, L"Temperature") || !mir_wstrcmp(UpdateData->Name, L"High") || !mir_wstrcmp(UpdateData->Name, L"Low") || !mir_wstrcmp(UpdateData->Name, L"Feel") || - !mir_wstrcmp(UpdateData->Name, L"Dewpoint") || + !mir_wstrcmp(UpdateData->Name, L"Dew point") || !mir_wstrcmpi(UpdateData->Unit, L"C") || !mir_wstrcmpi(UpdateData->Unit, L"F") || !mir_wstrcmpi(UpdateData->Unit, L"K")) { GetTemp(Data, UpdateData->Unit, str); |