From 9983ccb17775804f3985ed0d3c69852c7cad0348 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sat, 19 Jan 2013 08:40:02 +0000 Subject: - Another portion of _T replacement when it's not needed (from person) git-svn-id: http://svn.miranda-ng.org/main/trunk@3160 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Boltun/src/actionQueue.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'plugins/Boltun/src/actionQueue.cpp') diff --git a/plugins/Boltun/src/actionQueue.cpp b/plugins/Boltun/src/actionQueue.cpp index cc9e642600..4da1b56178 100644 --- a/plugins/Boltun/src/actionQueue.cpp +++ b/plugins/Boltun/src/actionQueue.cpp @@ -87,9 +87,9 @@ void UpdateTimer() static bool NotifyTyping(HANDLE hContact) { - int res = DBGetContactSettingByte(hContact, "SRMsg", "SupportTyping", 2); + int res = db_get_b(hContact, "SRMsg", "SupportTyping", 2); if (res == 2) - res = DBGetContactSettingByte(NULL, "SRMsg", "DefaultTyping", 1); + res = db_get_b(NULL, "SRMsg", "DefaultTyping", 1); return res != 0; } @@ -238,8 +238,7 @@ void DoAnswer(HANDLE hContact, const TalkBot::MessageInfo *info, bool sticky = f void AnswerToContact(HANDLE hContact, const TCHAR* messageToAnswer) { - if (Config.TalkWarnContacts && DBGetContactSettingByte(hContact, BOLTUN_KEY, - DB_CONTACT_WARNED, FALSE) == FALSE) + if (Config.TalkWarnContacts && db_get_b(hContact, BOLTUN_KEY, DB_CONTACT_WARNED, FALSE) == FALSE) { DoAnswer(hContact, new TalkBot::MessageInfo((const TCHAR*)Config.WarnText), true); db_set_b(hContact, BOLTUN_KEY, DB_CONTACT_WARNED, TRUE); -- cgit v1.2.3