diff flys-client/src/main/java/de/intevation/flys/client/client/ui/WQInputPanel.java @ 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 9152cfb3a54c
children 00e429e6420c
line wrap: on
line diff
--- 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();
 

http://dive4elements.wald.intevation.org