BF [ 2995212 ] NPE on Location dialog
Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2995212
This commit is contained in:
parent
d727399e9b
commit
5fd4760b32
|
@ -53,6 +53,9 @@ import org.zkoss.zk.ui.event.Events;
|
||||||
* This class is based upon VLocationDialog, written by Jorg Janke
|
* This class is based upon VLocationDialog, written by Jorg Janke
|
||||||
* @author Cristina Ghita, www.arhipac.ro
|
* @author Cristina Ghita, www.arhipac.ro
|
||||||
* <li>FR [ 2794312 ] Location AutoComplete
|
* <li>FR [ 2794312 ] Location AutoComplete
|
||||||
|
* @author Teo Sarca, teo.sarca@gmail.com
|
||||||
|
* <li>BF [ 2995212 ] NPE on Location dialog
|
||||||
|
* https://sourceforge.net/tracker/?func=detail&aid=2995212&group_id=176962&atid=955896
|
||||||
*
|
*
|
||||||
* @TODO: Implement fOnline button present in swing client
|
* @TODO: Implement fOnline button present in swing client
|
||||||
*
|
*
|
||||||
|
@ -570,7 +573,7 @@ public class WLocationDialog extends Window implements EventListener
|
||||||
// Country/Region
|
// Country/Region
|
||||||
MCountry country = (MCountry)lstCountry.getSelectedItem().getValue();
|
MCountry country = (MCountry)lstCountry.getSelectedItem().getValue();
|
||||||
m_location.setCountry(country);
|
m_location.setCountry(country);
|
||||||
if (country.isHasRegion())
|
if (country.isHasRegion() && lstRegion.getSelectedItem() != null)
|
||||||
{
|
{
|
||||||
MRegion r = (MRegion)lstRegion.getSelectedItem().getValue();
|
MRegion r = (MRegion)lstRegion.getSelectedItem().getValue();
|
||||||
m_location.setRegion(r);
|
m_location.setRegion(r);
|
||||||
|
|
Loading…
Reference in New Issue