diff options
author | George Hazan <george.hazan@gmail.com> | 2025-01-27 15:29:29 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-01-27 15:29:29 +0300 |
commit | 184833fc4932e3bb21e5794429a617cc9cca40d7 (patch) | |
tree | eff4510f9a42c6820f3cf150b4075a84dd05bf77 /protocols/Weather/src | |
parent | 3527701971dc22b2c7ea666a475791c80b05cdd6 (diff) |
minor code cleaning
Diffstat (limited to 'protocols/Weather/src')
-rw-r--r-- | protocols/Weather/src/weather_update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/src/weather_update.cpp b/protocols/Weather/src/weather_update.cpp index c1f51db943..3b18def988 100644 --- a/protocols/Weather/src/weather_update.cpp +++ b/protocols/Weather/src/weather_update.cpp @@ -457,7 +457,7 @@ int CWeatherProto::GetWeatherData(MCONTACT hContact) if (!result.IsEmpty()) result += L"; "; - result.AppendFormat(L"%s - %s", TranslateW(it->Name), it->Value.c_str()); + result.AppendFormat(L"%s: %s", TranslateW(it->Name), it->Value.c_str()); } CMStringA szSetting(FORMAT, "Forecast Day %d", iFore++); |