diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-28 16:24:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-28 16:24:36 +0000 |
commit | d76054aaa73912cca449378e07305e3c0b1ad608 (patch) | |
tree | d5d328db62e37e8322c72de6368c8790845147a8 /plugins/DbChecker/src/wizard.cpp | |
parent | f3311cd7eb5e87b3718f763a3c08cd3764c84f51 (diff) |
fixes for the dbchecker's wizard to operate correctly in the service mode
git-svn-id: http://svn.miranda-ng.org/main/trunk@1226 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbChecker/src/wizard.cpp')
-rw-r--r-- | plugins/DbChecker/src/wizard.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/DbChecker/src/wizard.cpp b/plugins/DbChecker/src/wizard.cpp index 835bb9d563..7a49a06daf 100644 --- a/plugins/DbChecker/src/wizard.cpp +++ b/plugins/DbChecker/src/wizard.cpp @@ -97,6 +97,7 @@ INT_PTR CALLBACK WizardDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lP case WM_INITDIALOG:
SendMessage(hdlg, WM_SETICON, ICON_SMALL, (LPARAM)LoadIcon(hInst, MAKEINTRESOURCE(IDI_DBTOOL)));
hdlgPage = NULL;
+ bLaunchMiranda = false;
SendMessage(hdlg, WZM_GOTOPAGE, IDD_WELCOME, (LPARAM)WelcomeDlgProc);
TranslateDialogDefault(hdlg);
return TRUE;
@@ -139,8 +140,6 @@ INT_PTR CALLBACK WizardDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lP DestroyWindow(hdlgPage);
if (hBoldFont != NULL) DeleteObject(hBoldFont);
if (hEmfHeaderLogo != NULL) DeleteEnhMetaFile(hEmfHeaderLogo);
- if (bServiceMode)
- PostQuitMessage(0);
break;
}
return FALSE;
|