Skip to content

Commit

Permalink
options.{c,h} -> option_parser.{c,h}
Browse files Browse the repository at this point in the history
  • Loading branch information
knopwob committed Feb 21, 2013
1 parent be5940b commit 56716ec
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dunst.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "dbus.h"
#include "utils.h"

#include "options.h"
#include "option_parser.h"
#include "settings.h"

// }}}
Expand Down
2 changes: 1 addition & 1 deletion options.c → option_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <stdio.h>
#include <glib.h>

#include "options.h"
#include "option_parser.h"
#include "utils.h"

typedef struct _entry_t {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <basedir_fs.h>

#include "dunst.h"
#include "options.h"
#include "option_parser.h"
#include "settings.h"
#include "config.h"
// }}}
Expand Down

0 comments on commit 56716ec

Please sign in to comment.