aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 09:51:35 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 10:02:33 +0100
commit47fc08bffe94d33c88caafd084fa24e31e902798 (patch)
tree6b73aa3f6789fc82100abdf2d1118acfd5666ef5 /src
parentc0f2024a2eebaa156f3c9ddf55f58e00ce5cee8e (diff)
exclude: convert to C++
Diffstat (limited to 'src')
-rw-r--r--src/ExcludeList.cxx (renamed from src/exclude.c)9
-rw-r--r--src/ExcludeList.hxx (renamed from src/exclude.h)2
-rw-r--r--src/UpdateWalk.cxx2
3 files changed, 7 insertions, 6 deletions
diff --git a/src/exclude.c b/src/ExcludeList.cxx
index fecc859c..e71a9920 100644
--- a/src/exclude.c
+++ b/src/ExcludeList.cxx
@@ -23,8 +23,11 @@
*/
#include "config.h"
-#include "exclude.h"
+#include "ExcludeList.hxx"
+
+extern "C" {
#include "path.h"
+}
#include <assert.h>
#include <string.h>
@@ -69,7 +72,7 @@ void
exclude_list_free(GSList *list)
{
while (list != NULL) {
- GPatternSpec *pattern = list->data;
+ GPatternSpec *pattern = (GPatternSpec *)list->data;
g_pattern_spec_free(pattern);
list = g_slist_remove(list, list->data);
}
@@ -83,7 +86,7 @@ exclude_list_check(GSList *list, const char *name_fs)
/* XXX include full path name in check */
for (; list != NULL; list = list->next) {
- GPatternSpec *pattern = list->data;
+ GPatternSpec *pattern = (GPatternSpec *)list->data;
if (g_pattern_match_string(pattern, name_fs))
return true;
diff --git a/src/exclude.h b/src/ExcludeList.hxx
index 5b1229e2..52ba377b 100644
--- a/src/exclude.h
+++ b/src/ExcludeList.hxx
@@ -27,8 +27,6 @@
#include <glib.h>
-#include <stdbool.h>
-
/**
* Loads and parses a .mpdignore file.
*/
diff --git a/src/UpdateWalk.cxx b/src/UpdateWalk.cxx
index eb056583..909687f4 100644
--- a/src/UpdateWalk.cxx
+++ b/src/UpdateWalk.cxx
@@ -29,9 +29,9 @@
#include "song.h"
#include "PlaylistVector.hxx"
#include "Mapper.hxx"
+#include "ExcludeList.hxx"
extern "C" {
-#include "exclude.h"
#include "uri.h"
#include "path.h"
#include "playlist_list.h"