diff options
Diffstat (limited to 'plugins/ShellExt')
-rw-r--r-- | plugins/ShellExt/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/options.cpp b/plugins/ShellExt/src/options.cpp index dee192de91..e8f56e1614 100644 --- a/plugins/ShellExt/src/options.cpp +++ b/plugins/ShellExt/src/options.cpp @@ -117,6 +117,6 @@ int OnOptionsInit(WPARAM wParam, LPARAM) opt.pszTemplate = MAKEINTRESOURCEA(IDD_SHLOPTS);
opt.hInstance = g_plugin.getInst();
opt.pfnDlgProc = OptDialogProc;
- Options_AddPage(wParam, &opt);
+ g_plugin.addOptions(wParam, &opt);
return 0;
}
|