Mercurial > dive4elements > river
changeset 1459:149f70bcbb96
Adapted the seperator character between Ws and Qs in DESCRIBE documents which has changed in the flys-artifacts.
flys-client/trunk@3493 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 20 Dec 2011 11:50:20 +0000 |
parents | 61521bc0ced3 |
children | dfe884cc24a4 |
files | flys-client/ChangeLog flys-client/src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Tue Dec 20 11:17:38 2011 +0000 +++ b/flys-client/ChangeLog Tue Dec 20 11:50:20 2011 +0000 @@ -1,3 +1,9 @@ +2011-12-20 Ingo Weinzierl <ingo@intevation.de> + + * src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java: + Adapted the seperator character which is used to devide Ws and Qs (this + character has changed in flys-artifacts). + 2011-12-20 Felix Wolfsteller <felix.wolfsteller@intevation.de> * src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java:
--- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java Tue Dec 20 11:17:38 2011 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java Tue Dec 20 11:50:20 2011 +0000 @@ -520,7 +520,7 @@ protected VLayout createWString(DataItem single) { String label = single.getLabel().trim(); - String[] cols = label.split(" "); + String[] cols = label.split(";"); VLayout v = new VLayout(); @@ -554,7 +554,7 @@ protected VLayout createQString(DataItem single) { String label = single.getLabel().trim(); - String[] cols = label.split(" "); + String[] cols = label.split(";"); VLayout v = new VLayout();