options.{c,h} -> option_parser.{c,h}

This commit is contained in:
Sascha Kruse 2013-02-21 01:27:32 +00:00
parent be5940bc74
commit 56716ec948
5 changed files with 4 additions and 4 deletions

View File

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

View File

@ -34,7 +34,7 @@
#include "dbus.h"
#include "utils.h"
#include "options.h"
#include "option_parser.h"
#include "settings.h"
// }}}

View File

@ -8,7 +8,7 @@
#include <stdio.h>
#include <glib.h>
#include "options.h"
#include "option_parser.h"
#include "utils.h"
typedef struct _entry_t {

View File

@ -5,7 +5,7 @@
#include <basedir_fs.h>
#include "dunst.h"
#include "options.h"
#include "option_parser.h"
#include "settings.h"
#include "config.h"
// }}}