From 57364fde812d29b347fa89c06cb3c6b545bcb29e Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 15 Aug 2008 17:07:45 +0000 Subject: [PATCH] it's listbox_HWND not combo_HWND git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5696 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/nsDialogs/Readme.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Contrib/nsDialogs/Readme.html b/Contrib/nsDialogs/Readme.html index 5a86af16..a02ac835 100644 --- a/Contrib/nsDialogs/Readme.html +++ b/Contrib/nsDialogs/Readme.html @@ -727,37 +727,37 @@ SectionEnd

NSD_LB_AddString

-

${NSD_LB_AddString} combo_HWND string

+

${NSD_LB_AddString} listbox_HWND string

Adds a string to a list box.

NSD_LB_DelString

-

${NSD_LB_DelString} combo_HWND string

+

${NSD_LB_DelString} listbox_HWND string

Deletes a string from a list box.

NSD_LB_Clear

-

${NSD_LB_Clear} combo_HWND

+

${NSD_LB_Clear} listbox_HWND

Deletes all strings from a list box.

NSD_LB_GetCount

-

${NSD_LB_GetCount} combo_HWND output_variable

+

${NSD_LB_GetCount} listbox_HWND output_variable

Retrieves the number of strings from a list box.

NSD_LB_SelectString

-

${NSD_LB_SelectString} combo_HWND string

+

${NSD_LB_SelectString} listbox_HWND string

Selects a string in a list box.

NSD_LB_GetSelection

-

${NSD_LB_GetSelection} combo_HWND output_variable

+

${NSD_LB_GetSelection} listbox_HWND output_variable

Retrieves the selected stringed from a list box. Returns an empty string if no string is selected.