diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-05 07:29:15 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-05 07:29:15 +0000 |
commit | be1bd05cee00200ae16000abfb5c690261ea3420 (patch) | |
tree | 051d32ea0cd0a14e794c2c625013b78394f0b1f0 /plugins/YAMN/src/main.cpp | |
parent | 8527a46feb7089912c124a9d797be14fcc429545 (diff) |
YAMN:
- Fixed: "No Mail" popups were using "Mail" popup colors after r15160
- minor cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15247 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN/src/main.cpp')
-rw-r--r-- | plugins/YAMN/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/YAMN/src/main.cpp b/plugins/YAMN/src/main.cpp index bfca36fa74..56534ed10c 100644 --- a/plugins/YAMN/src/main.cpp +++ b/plugins/YAMN/src/main.cpp @@ -237,13 +237,13 @@ static void LoadPlugins() continue; } - if (!(*LoadFilter)(GetFcnPtrSvc)) { + if (!LoadFilter(GetFcnPtrSvc)) { FreeLibrary(hDll); hDll = NULL; } if (hDll != NULL) { - hDllPlugins = (HINSTANCE *)realloc((void *)hDllPlugins, (iDllPlugins+1)*sizeof(HINSTANCE)); + hDllPlugins = (HINSTANCE *)realloc(hDllPlugins, (iDllPlugins+1)*sizeof(HINSTANCE)); hDllPlugins[iDllPlugins++] = hDll; } } |