aboutsummaryrefslogtreecommitdiff
path: root/src/ClientPattern.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ClientPattern.hh')
-rw-r--r--src/ClientPattern.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientPattern.hh b/src/ClientPattern.hh
index b76aef8..4531c4a 100644
--- a/src/ClientPattern.hh
+++ b/src/ClientPattern.hh
@@ -26,7 +26,7 @@
26#ifndef CLIENTPATTERN_HH 26#ifndef CLIENTPATTERN_HH
27#define CLIENTPATTERN_HH 27#define CLIENTPATTERN_HH
28 28
29#include "RegExp.hh" 29#include "FbTk/RegExp.hh"
30#include "NotCopyable.hh" 30#include "NotCopyable.hh"
31 31
32#include <string> 32#include <string>
@@ -99,7 +99,7 @@ private:
99 struct Term { 99 struct Term {
100 Term(const std::string &regstr, bool full_match) :regexp(regstr, full_match){}; 100 Term(const std::string &regstr, bool full_match) :regexp(regstr, full_match){};
101 std::string orig; 101 std::string orig;
102 RegExp regexp; 102 FbTk::RegExp regexp;
103 WinProperty prop; 103 WinProperty prop;
104 bool negate; 104 bool negate;
105 }; 105 };