diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-05-19 00:17:06 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-05-19 00:17:06 +0000 |
commit | b4aea87dc0c96776fe8461266718b79dcaea692a (patch) | |
tree | 6bfc5d8d5f0fba7a751b86d5c705e8888ad3b086 /plugins/GmailNotifier/src/check.cpp | |
parent | 89fd1e3f4f03914eaa8f16bd613b2b8fde113620 (diff) |
GmailNotifier: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@9240 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/GmailNotifier/src/check.cpp')
-rw-r--r-- | plugins/GmailNotifier/src/check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GmailNotifier/src/check.cpp b/plugins/GmailNotifier/src/check.cpp index a57a12879e..06f73d6326 100644 --- a/plugins/GmailNotifier/src/check.cpp +++ b/plugins/GmailNotifier/src/check.cpp @@ -93,7 +93,7 @@ void CheckMailInbox(Account *curAcc) InternetSetOption(hHTTPRequest, INTERNET_OPTION_USERNAME, _A2T(curAcc->name), (int)strlen(curAcc->name) + 1);
InternetSetOption(hHTTPRequest, INTERNET_OPTION_PASSWORD, _A2T(curAcc->pass), (int)strlen(curAcc->pass) + 1);
if (!HttpSendRequest(hHTTPRequest, NULL, 0, NULL, 0)) {
- lstrcatA(curAcc->results.content, Translate("Can't get rss feed!"));
+ lstrcatA(curAcc->results.content, Translate("Can't get RSS feed!"));
goto error_handle;
}
while (InternetReadFile(hHTTPRequest, temp, _MAX_DOWN_BUFFER, &bufferLength) && bufferLength > 0) {
|