diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-20 11:44:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-20 11:44:01 +0000 |
commit | 418b3d07fab521103909ab0a985ababb2855efec (patch) | |
tree | e414e5702fc166e4e2c4459728454e27b4b193e5 /src | |
parent | e35464b3a1c3a5af68b348803049d90d73c1bc0d (diff) |
we don't unload checker on startup
git-svn-id: http://svn.miranda-ng.org/main/trunk@9881 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/database/database.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp index 5fdd136497..cab6cbfadb 100644 --- a/src/modules/database/database.cpp +++ b/src/modules/database/database.cpp @@ -449,11 +449,9 @@ int LoadDatabaseModule(void) if (!getProfile(szProfile, SIZEOF(szProfile)))
return 1;
- EnsureCheckerLoaded(false); // unload dbchecker
-
if (arDbPlugins.getCount() == 0) {
TCHAR buf[256];
- TCHAR* p = _tcsrchr(szProfile, '\\');
+ TCHAR *p = _tcsrchr(szProfile, '\\');
mir_sntprintf(buf, SIZEOF(buf), TranslateT("Miranda is unable to open '%s' because you do not have any profile plugins installed.\nYou need to install dbx_mmap.dll"), p ? ++p : szProfile);
MessageBox(0, buf, TranslateT("No profile support installed!"), MB_OK | MB_ICONERROR);
}
|