summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-14 20:56:29 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-14 20:56:29 +0000
commita47862baf67242d8b1bc77acb130d55dbcddef50 (patch)
tree035d6a43485f67149259ced527537e643592537d /plugins
parent26dd9ff89c617734e4f7959f1967fb98d7f3478f (diff)
fix for read-only mode
git-svn-id: http://svn.miranda-ng.org/main/trunk@1941 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/DbChecker/src/fileaccess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbChecker/src/fileaccess.cpp b/plugins/DbChecker/src/fileaccess.cpp
index b785d733d5..b545340155 100644
--- a/plugins/DbChecker/src/fileaccess.cpp
+++ b/plugins/DbChecker/src/fileaccess.cpp
@@ -50,7 +50,7 @@ INT_PTR CALLBACK FileAccessDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARA
case IDOK:
if (opts.bCheckOnly)
- PostMessage(GetParent(hdlg), WZM_GOTOPAGE, IDD_PROGRESS, (LPARAM)ProgressDlgProc);
+ OpenDatabase(hdlg, IDD_PROGRESS);
else
PostMessage(GetParent(hdlg), WZM_GOTOPAGE, IDD_CLEANING, (LPARAM)CleaningDlgProc);
break;