Add newline awareness to filter and search function of the event view
authorFrançois Rajotte <francois.rajotte@polymtl.ca>
Wed, 17 Apr 2013 19:22:14 +0000 (15:22 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Thu, 18 Apr 2013 17:06:35 +0000 (13:06 -0400)
Change-Id: I9d5f03b55931e954f30da8fe36342413b4a2adb1
Signed-off-by: François Rajotte <francois.rajotte@polymtl.ca>
Reviewed-on: https://git.eclipse.org/r/11993
Tested-by: Hudson CI
Reviewed-by: Bernd Hufmann <bhufmann@gmail.com>
IP-Clean: Bernd Hufmann <bhufmann@gmail.com>
Tested-by: Bernd Hufmann <bhufmann@gmail.com>
Reviewed-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/filter/model/TmfFilterMatchesNode.java

index d51a719ac4f04e212d6af8ac2418fd3f47f63de3..79bfb552a363d3b1bd0c45219e38d313d21549d8 100644 (file)
@@ -90,7 +90,7 @@ public class TmfFilterMatchesNode extends TmfFilterTreeNode {
     public void setRegex(String regex) {
         this.fRegex = regex;
         try {
-            this.fPattern = Pattern.compile(regex);
+            this.fPattern = Pattern.compile(regex, Pattern.DOTALL);
         } catch (PatternSyntaxException e) {
             this.fPattern = null;
         }
This page took 0.028989 seconds and 5 git commands to generate.