renamed dunst_dbus.* -> dbus.*

This commit is contained in:
Sascha Kruse 2013-02-20 08:52:54 +00:00
parent c003e4c454
commit 0dc127715f
4 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
include config.mk
SRC = draw.c dunst.c dunst_dbus.c utils.c options.c
SRC = draw.c dunst.c dbus.c utils.c options.c
OBJ = ${SRC:.c=.o}
all: doc options dunst service

View File

@ -3,7 +3,7 @@
#include <glib.h>
#include <gio/gio.h>
#include "dunst.h"
#include "dunst_dbus.h"
#include "dbus.h"
GDBusConnection *dbus_conn;

View File

@ -1,4 +1,4 @@
/* copyright 2013 Sascha Kruse and contributors (see LICENSE for licensing information) */
/* copyright 2012 Sascha Kruse and contributors (see LICENSE for licensing information) */
#define _GNU_SOURCE
#define XLIB_ILLEGAL_ACCESS
@ -32,12 +32,11 @@
#include "dunst.h"
#include "draw.h"
#include "dunst_dbus.h"
#include "dbus.h"
#include "utils.h"
#include "options.h"
#define INRECT(x,y,rx,ry,rw,rh) ((x) >= (rx) && (x) < (rx)+(rw) && (y) >= (ry) && (y) < (ry)+(rh))
#define LENGTH(X) (sizeof X / sizeof X[0])
#define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
@ -194,6 +193,7 @@ int cmp_notification(const void *va, const void *vb)
{
notification *a = (notification*) va;
notification *b = (notification*) vb;
if (!sort)
return 1;