aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-10 19:53:10 +0100
committerMax Kellermann <max@duempel.org>2008-12-10 19:53:10 +0100
commitaf8b511c67840ce2baa18c5cfe3abff9639c5ed1 (patch)
tree0ebffd07913811bfc7525d8f02b9d66b82ed3539 /src
parentd35bfe6d57bbd1adb830d7f7ae7ebc3c7dc9e644 (diff)
downloadmpd-af8b511c67840ce2baa18c5cfe3abff9639c5ed1.tar.gz
mpd-af8b511c67840ce2baa18c5cfe3abff9639c5ed1.tar.xz
mpd-af8b511c67840ce2baa18c5cfe3abff9639c5ed1.zip
support: renamed source to hscroll.c
There is only strscroll() left in support.c. Give the source a better name.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/hscroll.c (renamed from src/support.c)2
-rw-r--r--src/hscroll.h (renamed from src/support.h)4
-rw-r--r--src/screen.c2
-rw-r--r--src/screen_play.c2
-rw-r--r--src/screen_utils.c1
6 files changed, 7 insertions, 8 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a53e5d0ca..02c7dc8e8 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -29,7 +29,7 @@ ncmpc_headers = \
screen_utils.h\
list_window.h\
colors.h\
- support.h\
+ hscroll.h \
charset.h \
match.h \
wreadln.h\
@@ -66,7 +66,7 @@ ncmpc_SOURCES = \
screen_file.c\
list_window.c\
colors.c\
- support.c\
+ hscroll.c \
charset.c \
match.c \
wreadln.c\
diff --git a/src/support.c b/src/hscroll.c
index 3dbebd0e1..2915a112c 100644
--- a/src/support.c
+++ b/src/hscroll.c
@@ -16,7 +16,7 @@
*
*/
-#include "support.h"
+#include "hscroll.h"
#include "charset.h"
#include "config.h"
diff --git a/src/support.h b/src/hscroll.h
index 488629236..47ace33dd 100644
--- a/src/support.h
+++ b/src/hscroll.h
@@ -17,8 +17,8 @@
*
*/
-#ifndef SUPPORT_H
-#define SUPPORT_H
+#ifndef HSCROLL_H
+#define HSCROLL_H
#include "config.h"
diff --git a/src/screen.c b/src/screen.c
index 03e50faab..9c65e7812 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -21,7 +21,7 @@
#include "screen_utils.h"
#include "config.h"
#include "i18n.h"
-#include "support.h"
+#include "hscroll.h"
#include "charset.h"
#include "mpdclient.h"
#include "utils.h"
diff --git a/src/screen_play.c b/src/screen_play.c
index feff1f7ae..f8f65ba62 100644
--- a/src/screen_play.c
+++ b/src/screen_play.c
@@ -20,7 +20,7 @@
#include "i18n.h"
#include "charset.h"
#include "options.h"
-#include "support.h"
+#include "hscroll.h"
#include "mpdclient.h"
#include "utils.h"
#include "strfsong.h"
diff --git a/src/screen_utils.c b/src/screen_utils.c
index 20b4be1a4..89b364429 100644
--- a/src/screen_utils.c
+++ b/src/screen_utils.c
@@ -21,7 +21,6 @@
#include "mpdclient.h"
#include "config.h"
#include "i18n.h"
-#include "support.h"
#include "options.h"
#include "colors.h"
#include "wreadln.h"