Added more example controls and pages in NSD example.nsi

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6906 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2017-09-25 16:37:49 +00:00
parent ed6a6e4d06
commit f1b2f82242
3 changed files with 96 additions and 21 deletions

View file

@ -598,7 +598,7 @@ SendMessage ${CONTROL} ${LB_INSERTSTRING} -1 `STR:${STRING}`
!define NSD_LB_DelItem "!insertmacro __NSD_LB_DelItem "
!macro __NSD_LB_DelItem CONTROL INDEX
SendMessage ${CONTROL} ${LB_DELETESTRING} ${INDEX}
SendMessage ${CONTROL} ${LB_DELETESTRING} ${INDEX} 0
!macroend