dynlist: move to particles folder

This commit is contained in:
Daniel Eklöf 2018-12-29 22:13:00 +01:00
parent 86425fbe48
commit 52f13dec3d
4 changed files with 5 additions and 5 deletions

View file

@ -40,6 +40,7 @@ add_executable(f00bar
decorations/stack.c decorations/stack.h
decorations/underline.c decorations/underline.h
particles/dynlist.c particles/dynlist.h
particles/empty.c particles/empty.h
particles/list.c particles/list.h
particles/map.c particles/map.h
@ -50,7 +51,6 @@ add_executable(f00bar
modules/backlight/backlight.c modules/backlight/backlight.h
modules/battery/battery.c modules/battery/battery.h
modules/clock/clock.c modules/clock/clock.h
modules/i3/dynlist-exposable.c modules/i3/dynlist-exposable.h
modules/i3/i3.c modules/i3/i3.h
modules/label/label.c modules/label/label.h
modules/mpd/mpd.c modules/mpd/mpd.h

View file

@ -21,7 +21,7 @@
#include "../../log.h"
#include "../../bar.h"
#include "dynlist-exposable.h"
#include "../../particles/dynlist.h"
struct ws_content {
char *name;

View file

@ -1,9 +1,9 @@
#include "dynlist-exposable.h"
#include "dynlist.h"
#include <stdlib.h>
#define LOG_MODULE "dynlist"
#include "../../log.h"
#include "../log.h"
struct private {
int left_spacing;

View file

@ -1,7 +1,7 @@
#pragma once
#include <stddef.h>
#include "../../particle.h"
#include "../particle.h"
struct exposable *dynlist_exposable_new(
struct exposable **exposables, size_t count, int left_spacing, int right_spacing);