From 577d45b45561370c75886731a25ff53fd2709f20 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 27 Nov 2007 20:56:31 +0000 Subject: [PATCH] added missing Pops git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5384 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/nsDialogs/example.nsi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Contrib/nsDialogs/example.nsi b/Contrib/nsDialogs/example.nsi index 39ccaa5b..370d9760 100644 --- a/Contrib/nsDialogs/example.nsi +++ b/Contrib/nsDialogs/example.nsi @@ -45,12 +45,16 @@ FunctionEnd Function OnClick + Pop $0 # HWND + MessageBox MB_OK clicky FunctionEnd Function OnChange + Pop $0 # HWND + System::Call user32::GetWindowText(i$EDIT,t.r0,i${NSIS_MAX_STRLEN}) ${If} $0 == "hello there" @@ -68,6 +72,8 @@ FunctionEnd Function OnCheckbox + Pop $0 # HWND + MessageBox MB_OK "checkbox clicked" FunctionEnd