diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-30 06:07:51 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-30 06:07:51 +0000 |
commit | 2f0617376dcb4be5b837c5f888762e4e1ef3aceb (patch) | |
tree | 25d3640030a60a7e4b4006877064f1ec28936c7e /plugins/Variables/src/contact.cpp | |
parent | 6612e80e4d91179b9a315cf0c81a20cf96c9b415 (diff) |
cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13272 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src/contact.cpp')
-rw-r--r-- | plugins/Variables/src/contact.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Variables/src/contact.cpp b/plugins/Variables/src/contact.cpp index b5258b422f..da723406ce 100644 --- a/plugins/Variables/src/contact.cpp +++ b/plugins/Variables/src/contact.cpp @@ -82,7 +82,7 @@ typedef struct { /* cache for 'getcontactfromstring' service */
static CONTACTCE *cce = NULL;
static int cacheSize = 0;
-static CRITICAL_SECTION csContactCache;
+static mir_cs csContactCache;
static HANDLE hContactSettingChangedHook;
@@ -397,7 +397,6 @@ static int contactSettingChanged(WPARAM hContact, LPARAM lParam) int initContactModule()
{
- InitializeCriticalSection(&csContactCache);
hContactSettingChangedHook = HookEvent(ME_DB_CONTACT_SETTINGCHANGED, contactSettingChanged);
return 0;
}
@@ -405,7 +404,6 @@ int initContactModule() int deinitContactModule()
{
UnhookEvent(hContactSettingChangedHook);
- DeleteCriticalSection(&csContactCache);
return 0;
}
|