Uninstall text in the UI macros

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@835 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-29 19:48:16 +00:00
parent 4273255cc6
commit 34a538916e
5 changed files with 17 additions and 18 deletions

View file

@ -1,5 +1,5 @@
;NSIS Modern Style UI
;Multilanguage & LangDLL Example Script version 1.0
;Multilanguage & LangDLL Example Script version 1.01
;Written by Joost Verburg
!define NAME "Test Software" ;Define your own software name here
@ -72,7 +72,7 @@ SectionEnd
Section ""
;Invisible section to display the Finish header
!insertmacro MUI_FINISHHEADER
!insertmacro MUI_FINISHHEADER SetHeader
SectionEnd
@ -199,10 +199,8 @@ Section "Uninstall"
RMDir "$INSTDIR"
;Display the Finish header
IntOp ${CURRENTPAGE} ${CURRENTPAGE} + 1
Call un.SetHeader
!insertmacro MUI_FINISHHEADER un.SetHeader
SectionEnd
;--------------------------------