summaryrefslogtreecommitdiff
path: root/src/modules/database/database.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-02-19 11:48:12 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-02-19 11:48:12 +0000
commit8dc7456651251bc112b9edd9b5fd1c4849d7c83d (patch)
tree3e2e376197c49e77488c109a129ea269b08cb38f /src/modules/database/database.cpp
parent8d428350dc3307f8ada75fafece2049cca84e969 (diff)
import to open a database in read-only mode
git-svn-id: http://svn.miranda-ng.org/main/trunk@8172 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database/database.cpp')
-rw-r--r--src/modules/database/database.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp
index 2e2adf9b50..05c9141a73 100644
--- a/src/modules/database/database.cpp
+++ b/src/modules/database/database.cpp
@@ -363,7 +363,7 @@ int tryOpenDatabase(const TCHAR *tszProfile)
bWasOpened = true;
// try to load database
- MIDatabase *pDb = p->Load(tszProfile);
+ MIDatabase *pDb = p->Load(tszProfile, FALSE);
if (pDb) {
fillProfileName(tszProfile);
currDblink = p;
@@ -387,7 +387,7 @@ static int tryCreateDatabase(const TCHAR* ptszProfile)
int err = p->makeDatabase(tszProfile);
if (err == ERROR_SUCCESS) {
g_bDbCreated = true;
- MIDatabase *pDb = p->Load(tszProfile);
+ MIDatabase *pDb = p->Load(tszProfile, FALSE);
if (pDb != NULL) {
fillProfileName(tszProfile);
currDblink = p;