[izpack-devel] search input field without choices
Miraodb
miraodb at hotmail.com
Thu Jan 12 10:39:18 CET 2006
hi oliver,
thanks for the patch.
i'm creating a 3.8.2 todolist and patches list.
i'll test the patch right away and commit within today.
Users are always the best testers !
i would never had tried to put a combobox without options ;-)
Cheers,
fabrice
----- Original Message -----
From: "Oliver Kiddle" <okiddle at yahoo.co.uk>
To: <izpack-devel at berlios.de>
Sent: Thursday, January 12, 2006 10:28 AM
Subject: [izpack-devel] search input field without choices
> If I use a search field in a UserInputPanel but don't include any
> <choice> elements, the installer crashes with a
> java.lang.reflect.InvocationTargetException on startup. Not using
> <choice> elements is useful where I just want a file picker. The
> following patch fixes the crash.
>
> Oliver
>
> --- IzPack/src/lib/com/izforge/izpack/panels/UserInputPanel.java
2006-01-06 22:09:38.000000000 +0100
> +++ IzPack.modified/src/lib/com/izforge/izpack/panels/UserInputPanel.java
2006-01-12 10:23:17.000000000 +0100
> @@ -2621,6 +2621,11 @@
> * Check if the user has entered data into the ComboBox and
add it to the Itemlist
> */
> String selected = (String)
this.pathComboBox.getSelectedItem();
> + if (selected == null)
> + {
> + return false;
> + }
> +
> boolean found = false;
> for (int x = 0; x < this.pathComboBox.getItemCount(); x++)
> {
>
>
> This e-mail and any attachment is for authorised use by the intended
recipient(s) only. It may contain proprietary material, confidential
information and/or be subject to legal privilege. It should not be copied,
disclosed to, retained or used by, any other party. If you are not an
intended recipient then please promptly delete this e-mail and any
attachment and all copies and inform the sender. Thank you.
> _______________________________________________
> izpack-devel mailing list
> izpack-devel at lists.berlios.de
> http://lists.berlios.de/mailman/listinfo/izpack-devel
>
More information about the izpack-devel
mailing list