diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-25 18:11:20 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-25 18:11:20 +0000 |
commit | 0a5bd1c2f123bc03b5014e6332689a5fcd3c9a1a (patch) | |
tree | 8b04685aaa951a9c130f5c49034b13d93a00ff52 /protocols/Skype/src/skype_menus.cpp | |
parent | a036396be89ba6a39b38417f37d59ed91ebab7b2 (diff) |
- fixed some issues with contact adding and authorization
git-svn-id: http://svn.miranda-ng.org/main/trunk@2075 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_menus.cpp')
-rw-r--r-- | protocols/Skype/src/skype_menus.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_menus.cpp b/protocols/Skype/src/skype_menus.cpp index 3ef76141ca..0b47f6882d 100644 --- a/protocols/Skype/src/skype_menus.cpp +++ b/protocols/Skype/src/skype_menus.cpp @@ -35,8 +35,8 @@ int CSkypeProto::OnPrebuildContactMenu(WPARAM wParam, LPARAM) {
bool ctrlPressed = (GetKeyState(VK_CONTROL) & 0x8000) != 0;
- bool authNeed = this->GetSettingByte(hContact, "Auth");
- bool grantNeed = this->GetSettingByte(hContact, "Grant");
+ bool authNeed = this->GetSettingByte(hContact, "Auth") > 0;
+ bool grantNeed = this->GetSettingByte(hContact, "Grant") > 0;
sttEnableMenuItem( g_hContactMenuItems[CMI_AUTH_REQUEST], ctrlPressed || authNeed);
sttEnableMenuItem( g_hContactMenuItems[CMI_AUTH_GRANT], ctrlPressed || grantNeed);
@@ -80,7 +80,10 @@ int CSkypeProto::GrantAuth(WPARAM wParam, LPARAM lParam) if (g_skype->GetContact(sid, contact))
{
if (contact->SetBuddyStatus(true))
+ {
+ this->DeleteSetting(hContact, "Auth");
this->DeleteSetting(hContact, "Grant");
+ }
}
return 0;
@@ -95,7 +98,6 @@ int CSkypeProto::RevokeAuth(WPARAM wParam, LPARAM lParam) {
if (contact->SetBuddyStatus(false))
{
- //this->DeleteSetting(hContact, "Auth");
this->SetSettingByte(hContact, "Grant", 1);
}
this->contactList.remove_val(contact);
|