move draw files to common/

This commit is contained in:
Julien Danjou 2008-01-24 18:48:11 +01:00
parent 35803aff4c
commit 2ac27fdac4
7 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ bin_PROGRAMS += awesome
awesome_SOURCES = \ awesome_SOURCES = \
client.c client.h \ client.c client.h \
focus.c focus.h \ focus.c focus.h \
draw.c draw.h \ common/draw.c common/draw.h \
event.c event.h \ event.c event.h \
layout.c layout.h \ layout.c layout.h \
awesome.c awesome.h \ awesome.c awesome.h \

View File

@ -22,6 +22,8 @@
#ifndef AWESOME_LAYOUT_H #ifndef AWESOME_LAYOUT_H
#define AWESOME_LAYOUT_H #define AWESOME_LAYOUT_H
#include <X11/Xlib.h>
#include "uicb.h" #include "uicb.h"
#include "common/list.h" #include "common/list.h"
#include "common/util.h" #include "common/util.h"

View File

@ -23,8 +23,8 @@
#define AWESOME_STRUCTS_H #define AWESOME_STRUCTS_H
#include <regex.h> #include <regex.h>
#include "draw.h"
#include "layout.h" #include "layout.h"
#include "common/draw.h"
/** Bar possible position */ /** Bar possible position */
typedef enum typedef enum

View File

@ -20,7 +20,6 @@
* *
*/ */
#include "draw.h"
#include "widget.h" #include "widget.h"
#include "xutil.h" #include "xutil.h"
#include "screen.h" #include "screen.h"

View File

@ -20,7 +20,6 @@
*/ */
#include <string.h> #include <string.h>
#include "draw.h"
#include "widget.h" #include "widget.h"
#include "xutil.h" #include "xutil.h"
#include "screen.h" #include "screen.h"