diff options
author | Paul Gardiner <paulg.artifex@glidos.net> | 2012-08-03 15:40:05 +0100 |
---|---|---|
committer | Paul Gardiner <paulg.artifex@glidos.net> | 2012-08-03 15:40:05 +0100 |
commit | bec275e1c32de2e766777fca14394206106bf60b (patch) | |
tree | 50a74f16fed19862ea8b3e9315ac31a435354ba9 /fitz | |
parent | 8644f962dcbe086fb28d1eb8cff77aa74098058f (diff) | |
download | mupdf-bec275e1c32de2e766777fca14394206106bf60b.tar.xz |
Forms: add basic support for choice widgets to the Windows app
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/fitz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h index 6a9f7e0a..a04ef584 100644 --- a/fitz/fitz.h +++ b/fitz/fitz.h @@ -2518,7 +2518,7 @@ int fz_widget_choice_is_multiselect(fz_interactive *idoc, fz_widget *tw); fz_widget_choice_get_value: get the value of a choice widget. Returns the number of options curently selected and fills in the supplied array with their strings. Should first be called - with NULL as the array to find out how big the arrray need to + with NULL as the array to find out how big the array need to be. The filled in elements should not be freed by the caller. */ int fz_widget_choice_get_value(fz_interactive *idoc, fz_widget *tw, char *opts[]); |