diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-07 19:20:57 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-04-07 19:20:57 +0000 |
commit | 4ccc59e2f869856b3ca2e199087761c0fa6fdf9e (patch) | |
tree | e5a81b066875a358f370b131d95b8375f8213ce1 | |
parent | 7c62c0f18741771593a9e14f03b51a37a16c6c05 (diff) |
moved options to Events
git-svn-id: http://svn.miranda-ng.org/main/trunk@8878 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/FileAsMessage/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/FileAsMessage/src/main.cpp b/plugins/FileAsMessage/src/main.cpp index bf734f56fc..72165723c6 100644 --- a/plugins/FileAsMessage/src/main.cpp +++ b/plugins/FileAsMessage/src/main.cpp @@ -147,7 +147,7 @@ int OnOptInitialise(WPARAM wParam, LPARAM lParam) odp.hInstance = hInst;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
odp.ptszTitle = _T(SERVICE_TITLE);
- odp.ptszGroup = LPGENT("Plugins");
+ odp.ptszGroup = LPGENT("Events");
odp.flags = ODPF_BOLDGROUPS|ODPF_TCHAR;
odp.pfnDlgProc = OptionsDlgProc;
Options_AddPage(wParam, &odp);
|