From 2ad85c8e1ea21db93b3f6f52440ae598ee1d51ba Mon Sep 17 00:00:00 2001 From: joostverburg Date: Tue, 8 Oct 2002 18:06:36 +0000 Subject: [PATCH] some newlines git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1337 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/Modern UI/Basic.nsi | 8 ++++++++ Examples/Modern UI/InstallOptions.nsi | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/Examples/Modern UI/Basic.nsi b/Examples/Modern UI/Basic.nsi index 1d4170be..550c6833 100644 --- a/Examples/Modern UI/Basic.nsi +++ b/Examples/Modern UI/Basic.nsi @@ -72,6 +72,7 @@ SectionEnd ;Installer Functions Function .onInitDialog + !insertmacro MUI_INNERDIALOG_INIT !insertmacro MUI_INNERDIALOG_START 1 @@ -88,14 +89,19 @@ Function .onInitDialog !insertmacro MUI_INNERDIALOG_STOP 3 !insertmacro MUI_INNERDIALOG_END + FunctionEnd Function .onNextPage + !insertmacro MUI_NEXTPAGE SetPage + FunctionEnd Function .onPrevPage + !insertmacro MUI_PREVPAGE SetPage + FunctionEnd Function SetPage @@ -163,7 +169,9 @@ SectionEnd ;Uninstaller Functions Function un.onNextPage + !insertmacro MUI_NEXTPAGE un.onNextPage + FunctionEnd Function un.SetPage diff --git a/Examples/Modern UI/InstallOptions.nsi b/Examples/Modern UI/InstallOptions.nsi index 6462d4b4..56e71228 100644 --- a/Examples/Modern UI/InstallOptions.nsi +++ b/Examples/Modern UI/InstallOptions.nsi @@ -93,6 +93,7 @@ SectionEnd ;Installer Functions Function .onInitDialog + !insertmacro MUI_INNERDIALOG_INIT !insertmacro MUI_INNERDIALOG_START 1 @@ -109,16 +110,21 @@ Function .onInitDialog !insertmacro MUI_INNERDIALOG_STOP 5 !insertmacro MUI_INNERDIALOG_END + FunctionEnd Function .onNextPage + !insertmacro MUI_INSTALLOPTIONS_NEXTPAGE !insertmacro MUI_NEXTPAGE SetPage + FunctionEnd Function .onPrevPage + !insertmacro MUI_INSTALLOPTIONS_PREVPAGE !insertmacro MUI_PREVPAGE SetPage + FunctionEnd Function SetPage