renamed draw.{c,h} x.{c,h}

This commit is contained in:
Sascha Kruse 2013-02-21 20:03:00 +00:00
parent 4e92d61804
commit f88cc4e831
7 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
include config.mk
SRC = draw.c \
SRC = x.c \
dunst.c \
dbus.c \
utils.c \

View File

@ -29,7 +29,7 @@
#include <X11/extensions/scrnsaver.h>
#include "dunst.h"
#include "draw.h"
#include "x.h"
#include "dbus.h"
#include "utils.h"
#include "rules.h"

View File

@ -5,7 +5,7 @@
#include <glib.h>
#include <stdbool.h>
#include "draw.h"
#include "x.h"
#define ERR(msg) printf("%s : %d\n", (msg), __LINE__)
#define PERR(msg, errnum) printf("(%d) %s : %s\n", __LINE__, (msg), (strerror(errnum)))

View File

@ -10,7 +10,7 @@
#include <sys/wait.h>
#include "dbus.h"
#include "draw.h"
#include "x.h"
#include "notification.h"
#include "dunst.h"
#include "utils.h"

View File

@ -1,6 +1,6 @@
#pragma once
#include "draw.h"
#include "x.h"
#define LOW 0
#define NORM 1

View File

@ -40,7 +40,7 @@ DEALINGS IN THE SOFTWARE.
#include <X11/X.h>
#include <X11/Xatom.h>
#include "draw.h"
#include "x.h"
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))

View File