From 104e28778be07cff50f48c29e13f73ebc7d2de60 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 14 Sep 2009 20:20:27 +0200 Subject: [PATCH] tag: move into objects Signed-off-by: Julien Danjou --- CMakeLists.txt | 2 +- banning.c | 3 ++- client.c | 2 +- event.c | 2 +- ewmh.c | 2 +- luaa.c | 2 +- screen.c | 2 +- 7 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7909ad7fd..ce8fe5168 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ set(AWE_SRCS ${SOURCE_DIR}/selection.c ${SOURCE_DIR}/wibox.c ${SOURCE_DIR}/systray.c - ${SOURCE_DIR}/tag.c + ${SOURCE_DIR}/objects/tag.c ${SOURCE_DIR}/titlebar.c ${SOURCE_DIR}/widget.c ${SOURCE_DIR}/window.c diff --git a/banning.c b/banning.c index df54ef94f..2349ef371 100644 --- a/banning.c +++ b/banning.c @@ -20,7 +20,8 @@ */ #include "banning.h" -#include "client.h" +#include "objects/tag.h" +#include "window.h" #include "titlebar.h" #include "screen.h" diff --git a/client.c b/client.c index 5f99d95a7..9ff46eada 100644 --- a/client.c +++ b/client.c @@ -22,7 +22,7 @@ #include #include -#include "tag.h" +#include "objects/tag.h" #include "ewmh.h" #include "screen.h" #include "titlebar.h" diff --git a/event.c b/event.c index a68f07d68..ff6140bd8 100644 --- a/event.c +++ b/event.c @@ -27,7 +27,7 @@ #include "awesome.h" #include "event.h" -#include "tag.h" +#include "objects/tag.h" #include "window.h" #include "ewmh.h" #include "client.h" diff --git a/ewmh.c b/ewmh.c index 43edb7af9..2c784e3c2 100644 --- a/ewmh.c +++ b/ewmh.c @@ -26,7 +26,7 @@ #include #include "ewmh.h" -#include "tag.h" +#include "objects/tag.h" #include "screen.h" #include "client.h" #include "widget.h" diff --git a/luaa.c b/luaa.c index 7a806677d..e93f372af 100644 --- a/luaa.c +++ b/luaa.c @@ -36,7 +36,7 @@ #include "ewmh.h" #include "luaa.h" #include "spawn.h" -#include "tag.h" +#include "objects/tag.h" #include "client.h" #include "screen.h" #include "event.h" diff --git a/screen.c b/screen.c index 745e47f0d..193098bdf 100644 --- a/screen.c +++ b/screen.c @@ -26,7 +26,7 @@ #include "screen.h" #include "ewmh.h" -#include "tag.h" +#include "objects/tag.h" #include "client.h" #include "widget.h" #include "wibox.h"