From 2e365a4e1342901d1fdb1a7bbcc7994bb2f9b469 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 7 Aug 2006 13:57:13 +0000 Subject: [PATCH] fixed bug #1535995 - failed plug-in calls output incomplete messages git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4728 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/script.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/script.cpp b/Source/script.cpp index 5eea8797..3da6e904 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -5765,6 +5765,11 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) return ret; } + DefineInnerLangString(NLF_SYMBOL_NOT_FOUND); + DefineInnerLangString(NLF_COULD_NOT_LOAD); + DefineInnerLangString(NLF_NO_OLE); + DefineInnerLangString(NLF_ERR_REG_DLL); + return PS_OK; } return PS_ERROR;