diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-10-19 00:39:27 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-10-19 00:39:27 +0000 |
commit | 4fdf79aaf61ba7f896e40324bdb27f759b951f7f (patch) | |
tree | 12bea2958a6db8bb11cd0a1cc732f55c85dc646b /plugins/Exchange | |
parent | 5225e4012bf2f7c496bf3d409955ae5368a93d4a (diff) |
removing unnecessary spaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@6527 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Exchange')
-rw-r--r-- | plugins/Exchange/src/emails.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Exchange/src/emails.cpp b/plugins/Exchange/src/emails.cpp index 7f8d0494cb..39dfa6d86a 100644 --- a/plugins/Exchange/src/emails.cpp +++ b/plugins/Exchange/src/emails.cpp @@ -86,7 +86,7 @@ int CExchangeServer::Connect(int bForceConnect) return DoConnect(user, password, server, port);
}
else {
- _popupUtil("Server is not configured ...");
+ _popupUtil("Server is not configured...");
}
}
return -1; //0 on success, != 0 otherwise
@@ -335,10 +335,10 @@ int CExchangeServer::Check(int bNoEmailsNotify) TCHAR buffer[1024];
if (count != 1)
{
- mir_sntprintf(buffer,_countof(buffer), TranslateT("You have %d unread emails ..."), count);
+ mir_sntprintf(buffer,_countof(buffer), TranslateT("You have %d unread emails..."), count);
}
else {
- mir_sntprintf(buffer, _countof(buffer),TranslateT("You have one unread email ..."));
+ mir_sntprintf(buffer, _countof(buffer),TranslateT("You have one unread email..."));
}
ShowMessage(buffer, count);
@@ -361,7 +361,7 @@ int CExchangeServer::Check(int bNoEmailsNotify) if (count==-1)
{
- _popupUtil("Cannot connect to Exchange server ...");
+ _popupUtil("Cannot connect to Exchange server...");
}
return count;
|