diff options
author | pixel <pixel> | 2004-12-23 12:10:30 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-23 12:10:30 +0000 |
commit | 61b8c1df15bed68858a1ad6d86551538e355680d (patch) | |
tree | 4d34aeccd2c065e73a7d20d6b6265577679bc91b | |
parent | c76a2b8d804176a189c14bef8ad4fcae97b986c6 (diff) |
We changed some filenames before...
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/ReadJob.h | 2 | ||||
-rw-r--r-- | lib/ReadJob.cc | 2 | ||||
-rw-r--r-- | src/paq.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 00f9ca0..4f97dde 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,7 +1,7 @@ pkginclude_HEADERS = \ Exceptions.h Handle.h BString.h Output.h Socket.h HttpServ.h Variables.h Menu.h \ Action.h Message.h Form.h Confirm.h Table.h IRC.h Task.h Buffer.h generic.h \ -CopyJob.h ReadJob.h Regex.h TaskMan.h InPipe.h OutPipe.h Input.h Image.h \ +CopyJob.h ReadJob.h BRegex.h TaskMan.h InPipe.h OutPipe.h Input.h Image.h \ Main.h Color.h GMPString.h SQL.h ConfigFile.h BLua.h LuaHandle.h noinst_HEADERS = gettext.h diff --git a/include/ReadJob.h b/include/ReadJob.h index d861aff..dec1648 100644 --- a/include/ReadJob.h +++ b/include/ReadJob.h @@ -3,7 +3,7 @@ #include <Task.h> #include <Handle.h> -#include <Regex.h> +#include <BRegex.h> class ReadJob : public Task { public: diff --git a/lib/ReadJob.cc b/lib/ReadJob.cc index c31b894..f6ef248 100644 --- a/lib/ReadJob.cc +++ b/lib/ReadJob.cc @@ -3,7 +3,7 @@ #endif #include "ReadJob.h" #include "HttpServ.h" -#include "Regex.h" +#include "BRegex.h" #include "gettext.h" ReadJob::ReadJob(Handle * as, Handle * ad, const Regex & aregex) : s(as), d(ad), regex(&aregex) { @@ -5,7 +5,7 @@ #include <Main.h> #include <Input.h> #include <Output.h> -#include <Regex.h> +#include <BRegex.h> #ifdef HAVE_CONFIG_H #include "config.h" #endif |