summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/crypt_check.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-11-19 15:22:11 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-11-19 15:22:11 +0000
commitb0b7cd90e972155a488b017eae3122ca8ac11ca8 (patch)
tree492b159a318acefcebb522959123a0ee7e0c71d8 /plugins/SecureIM/src/crypt_check.cpp
parent753aa1585f9e0939cba3073f8ef2c70972a47b62 (diff)
- returned back SecureIM option for the extra icons usage;
- code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@2376 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/crypt_check.cpp')
-rw-r--r--plugins/SecureIM/src/crypt_check.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SecureIM/src/crypt_check.cpp b/plugins/SecureIM/src/crypt_check.cpp
index 3a4a0e0c30..ad15f3f9de 100644
--- a/plugins/SecureIM/src/crypt_check.cpp
+++ b/plugins/SecureIM/src/crypt_check.cpp
@@ -107,7 +107,7 @@ BOOL isProtoSmallPackets(HANDLE hContact) {
BOOL isContactInvisible(HANDLE hContact) {
- if ( !DBGetContactSettingByte(hContact,"CList","Hidden",0)) {
+ if ( !db_get_b(hContact,"CList","Hidden",0)) {
if ( !clist_cnt ) return false;
for(int j=0;j<clist_cnt;j++) {
if ( clist[j].hContact == hContact ) {
@@ -130,7 +130,7 @@ BOOL isContactInvisible(HANDLE hContact) {
BOOL isNotOnList(HANDLE hContact) {
- return DBGetContactSettingByte(hContact, "CList", "NotOnList", 0);
+ return db_get_b(hContact, "CList", "NotOnList", 0);
}
@@ -220,7 +220,7 @@ BOOL isChatRoom(HANDLE hContact) {
for(int j=0;j<clist_cnt;j++) {
if ( clist[j].hContact == hContact ) {
if ( !clist[j].proto->inspecting ) break;
- return (DBGetContactSettingByte(hContact,clist[j].proto->name,"ChatRoom",0)!=0);
+ return (db_get_b(hContact,clist[j].proto->name,"ChatRoom",0)!=0);
}
}
return false;
@@ -238,7 +238,7 @@ BOOL isSecureIM(pUinKey ptr, BOOL emptyMirverAsSecureIM) {
if ( !ptr->proto->inspecting ) return false;
BOOL isSecureIM = false;
- if ( bNOL && DBGetContactSettingByte(ptr->hContact,"CList","NotOnList",0)) {
+ if ( bNOL && db_get_b(ptr->hContact,"CList","NotOnList",0)) {
return false;
}
LPSTR mirver = myDBGetString(ptr->hContact,ptr->proto->name,"MirVer");