diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-10 21:02:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-10 21:02:50 +0000 |
commit | 0f63d4fb9c2fae944997da970cd3627734333a1b (patch) | |
tree | 33e61cb4cf5b1f27eebfc09a85b8e472e0ae069a | |
parent | c40760c05c3900f9d87d48ad5f4fadd3c96bebef (diff) |
also dbchecker should not be controlled by Options/Plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@3545 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/plugins/pluginopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/plugins/pluginopts.cpp b/src/modules/plugins/pluginopts.cpp index 229113f62b..662c24c370 100644 --- a/src/modules/plugins/pluginopts.cpp +++ b/src/modules/plugins/pluginopts.cpp @@ -75,7 +75,7 @@ static BOOL dialogListPlugins(WIN32_FIND_DATA* fd, TCHAR* path, WPARAM, LPARAM l it.lParam = (LPARAM)dat;
int iRow = ListView_InsertItem(hwndList, &it);
if (isPluginOnWhiteList(fd->cFileName)) {
- bool bNoCheckbox = isdb || !_tcscmp(dat->fileName, _T("advaimg.dll"));
+ bool bNoCheckbox = isdb || !_tcscmp(dat->fileName, _T("advaimg.dll")) || !_tcscmp(dat->fileName, _T("dbchecker.dll"));
ListView_SetItemState(hwndList, iRow, bNoCheckbox ? 0x3000 : 0x2000, LVIS_STATEIMAGEMASK);
}
if (iRow != -1) {
|