summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/plugin.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2025-05-31 19:51:35 +0300
committerGeorge Hazan <george.hazan@gmail.com>2025-05-31 19:51:35 +0300
commit941e4ac612a20cdb2120241b260df759a4ce5720 (patch)
tree073889fb42d7be720cd6498843597bf54b91fd4e /plugins/MirLua/src/plugin.cpp
parent651468cb27939d749eebcc3a4c4b34984ea98709 (diff)
fixes #5041 (MirLua: открытие скрипта двойным кликом по имени файла)
Diffstat (limited to 'plugins/MirLua/src/plugin.cpp')
-rw-r--r--plugins/MirLua/src/plugin.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/MirLua/src/plugin.cpp b/plugins/MirLua/src/plugin.cpp
index 11c1f33c42..463851669f 100644
--- a/plugins/MirLua/src/plugin.cpp
+++ b/plugins/MirLua/src/plugin.cpp
@@ -86,24 +86,6 @@ void CMPlugin::ReloadLuaScripts()
/***********************************************/
-int CMPlugin::OnOptionsInit(WPARAM wParam, LPARAM)
-{
- OPTIONSDIALOGPAGE odp = {};
- odp.flags = ODPF_BOLDGROUPS | ODPF_UNICODE | ODPF_DONTTRANSLATE;
- odp.szGroup.w = LPGENW("Services");
- odp.szTitle.w = L"Lua";
-
- odp.szTab.w = LPGENW("Scripts");
- odp.pDialog = new CMLuaOptionsMain();
- g_plugin.addOptions(wParam, &odp);
-
- odp.szTab.w = LPGENW("Evaluate");
- odp.pDialog = new CMLuaEvaluateOptions();
- g_plugin.addOptions(wParam, &odp);
-
- return 0;
-}
-
int CMPlugin::OnModulesLoaded(WPARAM, LPARAM)
{
g_hCLibsFolder = FoldersRegisterCustomPathW(MODULENAME, LPGEN("C Libs Folder"), MIRLUA_PATHT);