diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-23 12:23:39 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-23 12:23:39 +0000 |
commit | 621ff1dc2cf264676f0ff6dd34008f01230ade2f (patch) | |
tree | 8c304c89624fb3c5af833b449185e1f8733500d7 /plugins/YAMN | |
parent | b17aba0c3ef3d5b35d702133bb055beecbc5016f (diff) |
double string from YAMN fixed (for real this time)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6600 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN')
-rw-r--r-- | plugins/YAMN/src/proto/pop3/pop3comm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/YAMN/src/proto/pop3/pop3comm.cpp b/plugins/YAMN/src/proto/pop3/pop3comm.cpp index 4f48c760b3..f20534aa75 100644 --- a/plugins/YAMN/src/proto/pop3/pop3comm.cpp +++ b/plugins/YAMN/src/proto/pop3/pop3comm.cpp @@ -227,7 +227,7 @@ int RegisterPOP3Plugin(WPARAM,LPARAM) //First, we register this plugin
//it is quite impossible this function returns zero (failure) as YAMN and internal plugin structre versions are the same
POP3ProtocolRegistration.Name = Translate("POP3 protocol (internal)");
- POP3ProtocolRegistration.Description = Translate("Mail notifier and browser for Miranda NG. Included POP3 protocol.");
+ POP3ProtocolRegistration.Description = Translate(__DESCRIPTION);
if (NULL==(POP3Plugin=(HYAMNPROTOPLUGIN)CallService(MS_YAMN_REGISTERPROTOPLUGIN,(WPARAM)&POP3ProtocolRegistration,(LPARAM)YAMN_PROTOREGISTRATIONVERSION)))
return 0;
|