diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-18 12:00:40 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-18 12:00:40 +0000 |
commit | 1227d4fee50d65e13089f09f7091d4e5d979e154 (patch) | |
tree | 094918b30fc9bfbda994c4a7481b28c8b4e4094b /protocols/weather/weather_userinfo.c | |
parent | 54220952111da5a8ee35b82c39d140058d4e606c (diff) |
Mataes's patch for Weather protocol
git-svn-id: http://svn.miranda-ng.org/main/trunk@37 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/weather/weather_userinfo.c')
-rw-r--r-- | protocols/weather/weather_userinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/weather/weather_userinfo.c b/protocols/weather/weather_userinfo.c index 07b296f601..2addea14da 100644 --- a/protocols/weather/weather_userinfo.c +++ b/protocols/weather/weather_userinfo.c @@ -362,7 +362,7 @@ void LoadBriefInfoText(HWND hwndDlg, HANDLE hContact) // check if data exist. If not, display error message box
if (!(BOOL)DBGetContactSettingByte(hContact, WEATHERPROTONAME, "IsUpdated", FALSE))
{
- FixStr(Translate("No information available.\nPlease update weather condition first."), str);
+ strcpy(str, Translate("No information available.\r\nPlease update weather condition first."));
}
else
// set the display text and show the message box
|