From 20f2d537f99f3aa5f2042faa67ade35874227911 Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 29 Apr 2007 21:02:13 +0000 Subject: [PATCH] fixed bug #1709460 - Command line help for MessageBox is incomplete git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5138 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/tokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/tokens.cpp b/Source/tokens.cpp index d4366637..fce95d54 100644 --- a/Source/tokens.cpp +++ b/Source/tokens.cpp @@ -130,7 +130,7 @@ static tokenType tokenlist[TOK__LAST] = {TOK_LOGSET,"LogSet",1,0,"on|off",TP_CODE}, {TOK_LOGTEXT,"LogText",1,0,"text",TP_CODE}, {TOK_MESSAGEBOX,"MessageBox",2,6,"mode messagebox_text [/SD return] [return_check label_to_goto_if_equal [return_check2 label2]]\n mode=modeflag[|modeflag[|modeflag[...]]]\n " - "modeflag=(MB_ABORTRETRYIGNORE|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_YESNO|MB_YESNOCANCEL|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_TOPMOST|MB_SETFOREGROUND|MB_RIGHT",TP_CODE}, + "modeflag=(MB_ABORTRETRYIGNORE|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_YESNO|MB_YESNOCANCEL|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_USERICON|MB_TOPMOST|MB_SETFOREGROUND|MB_RIGHT",TP_CODE}, {TOK_NOP,"Nop",0,0,"",TP_CODE}, {TOK_NAME,"Name",1,1,"installer_name installer_name_doubled_ampersands",TP_GLOBAL}, {TOK_OUTFILE,"OutFile",1,0,"install_output.exe",TP_GLOBAL},