summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-01-07 21:01:44 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-01-07 21:01:44 +0000
commit284bcba502b7b70c564adcbe508ea4e42ad67e17 (patch)
treef9160638703fe8c8f346835b5842f07a54333945
parent7748cdf57e6bdd8cc1511ece146ebcc606c56fbe (diff)
MirLua: fixed folders registration
git-svn-id: http://svn.miranda-ng.org/main/trunk@16054 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/MirLua/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/main.cpp b/plugins/MirLua/src/main.cpp
index 391816f77c..ba04c136d2 100644
--- a/plugins/MirLua/src/main.cpp
+++ b/plugins/MirLua/src/main.cpp
@@ -40,7 +40,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
int OnModulesLoaded(WPARAM, LPARAM)
{
- g_hScriptsFolder = FoldersRegisterCustomPathT(MODULE, LPGEN("Scripts folder"), MIRLUA_PATHT);
+ g_hScriptsFolder = FoldersRegisterCustomPathT(MODULE, "ScriptsFolder", MIRLUA_PATHT, TranslateT("Scripts folder"));
HookEvent(ME_OPT_INITIALISE, CLuaOptions::OnOptionsInit);