diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-04-15 19:59:49 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-04-15 19:59:49 +0000 |
commit | 03a53f9efa247115a9d57b8c8208f6e9768552cc (patch) | |
tree | 38921916ba077e4388a3143fe560e12c08cd47b9 | |
parent | a7309124f526fd1053f40fd1e778c5744dc03d60 (diff) |
DBeditor:
- Minor fix after r12840
git-svn-id: http://svn.miranda-ng.org/main/trunk@12845 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/DbEditorPP/src/main_window.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/DbEditorPP/src/main_window.cpp b/plugins/DbEditorPP/src/main_window.cpp index a9ed2f4046..7c74985b66 100644 --- a/plugins/DbEditorPP/src/main_window.cpp +++ b/plugins/DbEditorPP/src/main_window.cpp @@ -556,6 +556,7 @@ INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) break;
case MENU_OPEN_OPTIONS:
OPENOPTIONSDIALOG odp = { 0 };
+ odp.cbSize = sizeof(odp);
odp.pszGroup = "Database";
odp.pszPage = modFullname;
odp.pszTab = 0;
|