test - better io macro system

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1097 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2002-09-20 23:32:21 +00:00
parent 6fc93c1fac
commit dd436c800b
2 changed files with 18 additions and 25 deletions

View file

@ -129,18 +129,7 @@ Function SetPage
!insertmacro MUI_PAGE_START 2
!insertmacro MUI_HEADER_TEXT 1033 "Install Options A" "Create your own dialog!"
InstallOptions::dialog "$PLUGINSDIR\iniA.ini"
Pop ${TEMP1}
StrCmp ${TEMP1} "cancel" "" +2
Quit
StrCmp ${TEMP1} "back" "" ioA_noback
!insertmacro MUI_INSTALLOPTIONS_BACK
ioA_noback:
!insertmacro MUI_INSTALLOPTIONS_NEXT
!insertmacro MUI_INSTALLOPTIONS_SHOW "iniA.ini"
!insertmacro MUI_PAGE_STOP 2
@ -155,18 +144,7 @@ Function SetPage
!insertmacro MUI_PAGE_START 5
!insertmacro MUI_HEADER_TEXT 1033 "Install Options B" "Create your own dialog!"
InstallOptions::dialog "$PLUGINSDIR\iniB.ini"
Pop ${TEMP1}
StrCmp ${TEMP1} "cancel" "" +2
Quit
StrCmp ${TEMP1} "back" "" ioB_noback
!insertmacro MUI_INSTALLOPTIONS_BACK
ioB_noback:
!insertmacro MUI_INSTALLOPTIONS_NEXT
!insertmacro MUI_INSTALLOPTIONS_SHOW "iniB.ini"
!insertmacro MUI_PAGE_STOP 5