diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-05-19 19:19:43 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-05-19 19:19:43 +0000 |
commit | fccd139d14e8fb2ba03c60f49af477a91d1a46cd (patch) | |
tree | 65196e0d30f73a06bf5cc23feb5bb3bf2b2bce4b /protocols | |
parent | 11621ce779ee5d6eae799347b1f50a104c478569 (diff) |
Some LPGEN fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@4749 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Skype/src/skype_account.cpp | 4 | ||||
-rw-r--r-- | protocols/Skype/src/skype_instances.cpp | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/protocols/Skype/src/skype_account.cpp b/protocols/Skype/src/skype_account.cpp index d102e6acd0..30055b02e3 100644 --- a/protocols/Skype/src/skype_account.cpp +++ b/protocols/Skype/src/skype_account.cpp @@ -57,9 +57,7 @@ bool CSkypeProto::PrepareLogin() {
this->m_iStatus = ID_STATUS_OFFLINE;
this->SendBroadcast(ACKTYPE_LOGIN, ACKRESULT_FAILED, NULL, LOGINERR_BADUSERID);
- this->ShowNotification(
- ::TranslateT("You have not entered a Skype name.\n\
- Configure this in Options->Network->Skype and try again."));
+ this->ShowNotification(::TranslateT("You have not entered a Skype name.\nConfigure this in Options->Network->Skype and try again."));
return false;
}
diff --git a/protocols/Skype/src/skype_instances.cpp b/protocols/Skype/src/skype_instances.cpp index 5f67e28ebd..6cc9c77d9b 100644 --- a/protocols/Skype/src/skype_instances.cpp +++ b/protocols/Skype/src/skype_instances.cpp @@ -12,9 +12,7 @@ CSkypeProto* CSkypeProto::InitSkypeProto(const char* protoName, const wchar_t* u if (CSkypeProto::instanceList.getCount() > 0)
{
CSkypeProto::ShowNotification(
- ::TranslateT("SkypeKit will only permit you to login to one account at a time.\n"
- L"Adding multiple instances of SkypeKit is prohibited in the licence "
- L"agreement and standard distribution terms."),
+ ::TranslateT("SkypeKit will only permit you to login to one account at a time.\nAdding multiple instances of SkypeKit is prohibited in the licence agreement and standard distribution terms."),
MB_ICONWARNING);
return NULL;
}
|