From ddba4ede6b451d0cfcd0d32b5180fbd0689966bf Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 10 Feb 2014 08:04:30 +0000 Subject: - HANDLE hContact => HCONTACT - GCF_* prefix was added to chat constants to avoid name conflicts git-svn-id: http://svn.miranda-ng.org/main/trunk@8078 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/TooltipNotify/src/DbHelpers.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/TooltipNotify/src/DbHelpers.cpp') diff --git a/plugins/TooltipNotify/src/DbHelpers.cpp b/plugins/TooltipNotify/src/DbHelpers.cpp index 19de8c826f..15261988de 100644 --- a/plugins/TooltipNotify/src/DbHelpers.cpp +++ b/plugins/TooltipNotify/src/DbHelpers.cpp @@ -11,7 +11,7 @@ static int EnumSettingsProc1(const char *pszSetting, LPARAM lParam) return 0; } -bool ModuleSettingsExists(HANDLE hContact, const char* pszModuleName) +bool ModuleSettingsExists(HCONTACT hContact, const char* pszModuleName) { DBCONTACTENUMSETTINGS dbces = {0}; dbces.szModule = pszModuleName; @@ -28,7 +28,7 @@ static int EnumSettingsProc2(const char *pszSetting, LPARAM lParam) return 0; } -void DeleteModuleSettings(HANDLE hContact, const char* pszModuleName) +void DeleteModuleSettings(HCONTACT hContact, const char* pszModuleName) { SettingsList settingsList; DBCONTACTENUMSETTINGS dbces = {0}; @@ -48,7 +48,7 @@ void DeleteModuleSettings(HANDLE hContact, const char* pszModuleName) } -static int GetSetting(HANDLE hContact, const char *szModule, const char *szSetting, DBVARIANT *dbv) +static int GetSetting(HCONTACT hContact, const char *szModule, const char *szSetting, DBVARIANT *dbv) { int rr = db_get(hContact, szModule, szSetting, dbv); if (dbv->type != DBVT_UTF8) @@ -57,7 +57,7 @@ static int GetSetting(HANDLE hContact, const char *szModule, const char *szSetti return 1; } -void RenameModule(HANDLE hContact, const char* pszOldName, const char* pszNewName) +void RenameModule(HCONTACT hContact, const char* pszOldName, const char* pszNewName) { SettingsList settingsList; DBCONTACTENUMSETTINGS dbces = {0}; -- cgit v1.2.3