diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-27 12:27:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-27 12:27:50 +0300 |
commit | 1cabfa1a3fa019eff1454dcf6462905e1fa834b6 (patch) | |
tree | 031ab50de320f503fc0228d84e7308c94abc1304 /plugins/CrashDumper/src/crshdmp.cpp | |
parent | df19001fa48529bd59096ebd9a0b1ce669278532 (diff) |
code cleaning
Diffstat (limited to 'plugins/CrashDumper/src/crshdmp.cpp')
-rw-r--r-- | plugins/CrashDumper/src/crshdmp.cpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/plugins/CrashDumper/src/crshdmp.cpp b/plugins/CrashDumper/src/crshdmp.cpp index 7305b25612..8c76065ec6 100644 --- a/plugins/CrashDumper/src/crshdmp.cpp +++ b/plugins/CrashDumper/src/crshdmp.cpp @@ -18,6 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h"
+int OptionsInit(WPARAM wParam, LPARAM);
+
CMPlugin g_plugin;
LCID packlcid;
@@ -197,17 +199,6 @@ static int FoldersPathChanged(WPARAM, LPARAM) return 0;
}
-int OptionsInit(WPARAM wParam, LPARAM)
-{
- OPTIONSDIALOGPAGE odp = {};
- odp.szTitle.a = MODULENAME;
- odp.szGroup.a = LPGEN("Services");
- odp.flags = ODPF_BOLDGROUPS;
- odp.pDialog = new COptDialog;
- g_plugin.addOptions(wParam, &odp);
- return 0;
-}
-
static int ToolbarModulesLoaded(WPARAM, LPARAM)
{
TTBButton ttb = {};
|