branch develop updated (8309aac -> 82212b4)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from 8309aac [jgitflow-maven-plugin]Updating develop poms back to pre merge state new 82212b4 fixes #3579 [Table Filter] the "CONTAINS" filter does not work with the upper case words The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 82212b48682b2728491ec248a19397339e40565d Author: Kevin Morin <morin@codelutin.com> Date: Wed Nov 26 20:01:04 2014 +0100 fixes #3579 [Table Filter] the "CONTAINS" filter does not work with the upper case words Summary of changes: .../swing/list/filter/CheckListFilterType.java | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit 82212b48682b2728491ec248a19397339e40565d Author: Kevin Morin <morin@codelutin.com> Date: Wed Nov 26 20:01:04 2014 +0100 fixes #3579 [Table Filter] the "CONTAINS" filter does not work with the upper case words --- .../swing/list/filter/CheckListFilterType.java | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/filter/CheckListFilterType.java b/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/filter/CheckListFilterType.java index 57c8cd5..4394b2f 100644 --- a/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/filter/CheckListFilterType.java +++ b/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/filter/CheckListFilterType.java @@ -1,27 +1,27 @@ -package jaxx.runtime.swing.list.filter; - -/* - * #%L - * JAXX :: Widgets - * %% - * Copyright (C) 2008 - 2014 CodeLutin - * %% - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Lesser Public License for more details. - * - * You should have received a copy of the GNU General Lesser Public - * License along with this program. If not, see - * <http://www.gnu.org/licenses/lgpl-3.0.html>. - * #L% - */ - +package jaxx.runtime.swing.list.filter; + +/* + * #%L + * JAXX :: Widgets + * %% + * Copyright (C) 2008 - 2014 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + public enum CheckListFilterType { @@ -43,7 +43,7 @@ public enum CheckListFilterType { public boolean include( String element, String filter ) { if ( element == null || filter == null ) return false; - return element.contains(filter); + return element.toLowerCase().contains(filter.toLowerCase()); } -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm