diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-28 18:29:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-28 18:29:52 +0000 |
commit | be3185a374d39a8ee0f12a4e985ecca279633fff (patch) | |
tree | 14ba64a79d7dd62d95797db402950702a24667fe /plugins/DbChecker/src/wizard.cpp | |
parent | 61be34f18c2d61c075a7e268aa9aab89b78ec17a (diff) |
- MS_DB_CHECKPROFILE - service for checking databases
- added menu item "Check" to a context menu in profile manager
git-svn-id: http://svn.miranda-ng.org/main/trunk@1228 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbChecker/src/wizard.cpp')
-rw-r--r-- | plugins/DbChecker/src/wizard.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/plugins/DbChecker/src/wizard.cpp b/plugins/DbChecker/src/wizard.cpp index 7a49a06daf..bfc5c5774e 100644 --- a/plugins/DbChecker/src/wizard.cpp +++ b/plugins/DbChecker/src/wizard.cpp @@ -98,7 +98,10 @@ INT_PTR CALLBACK WizardDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lP SendMessage(hdlg, WM_SETICON, ICON_SMALL, (LPARAM)LoadIcon(hInst, MAKEINTRESOURCE(IDI_DBTOOL)));
hdlgPage = NULL;
bLaunchMiranda = false;
- SendMessage(hdlg, WZM_GOTOPAGE, IDD_WELCOME, (LPARAM)WelcomeDlgProc);
+ if (bShortMode)
+ SendMessage(hdlg, WZM_GOTOPAGE, IDD_SELECTDB, (LPARAM)SelectDbDlgProc);
+ else
+ SendMessage(hdlg, WZM_GOTOPAGE, IDD_WELCOME, (LPARAM)WelcomeDlgProc);
TranslateDialogDefault(hdlg);
return TRUE;
@@ -138,8 +141,14 @@ INT_PTR CALLBACK WizardDlgProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lP CloseHandle(opts.hOutFile);
DestroyWindow(hdlgPage);
- if (hBoldFont != NULL) DeleteObject(hBoldFont);
- if (hEmfHeaderLogo != NULL) DeleteEnhMetaFile(hEmfHeaderLogo);
+ if (hBoldFont != NULL) {
+ DeleteObject(hBoldFont);
+ hBoldFont = NULL;
+ }
+ if (hEmfHeaderLogo != NULL) {
+ DeleteEnhMetaFile(hEmfHeaderLogo);
+ hEmfHeaderLogo = NULL;
+ }
break;
}
return FALSE;
|