aboutsummaryrefslogtreecommitdiff
path: root/src/ClientPattern.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:15:06 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:15:06 (GMT)
commit32eb2a148ea7a257a058658af36e9f8c801a524a (patch)
tree1a540358fe1e9afb8566b0bc5a9f134ded2a2f7f /src/ClientPattern.hh
parent39224b0142078376d2bd39789b4de24a18377cf0 (diff)
downloadfluxbox-32eb2a148ea7a257a058658af36e9f8c801a524a.zip
fluxbox-32eb2a148ea7a257a058658af36e9f8c801a524a.tar.bz2
move RegExp to FbTk
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 };