aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter/FilterConfig.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/filter/FilterConfig.cxx')
-rw-r--r--src/filter/FilterConfig.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/filter/FilterConfig.cxx b/src/filter/FilterConfig.cxx
index d8c1fc6c2..c5f24362c 100644
--- a/src/filter/FilterConfig.cxx
+++ b/src/filter/FilterConfig.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -21,10 +21,11 @@
#include "FilterConfig.hxx"
#include "plugins/ChainFilterPlugin.hxx"
#include "FilterPlugin.hxx"
-#include "config/ConfigData.hxx"
+#include "config/Param.hxx"
#include "config/ConfigOption.hxx"
#include "config/ConfigGlobal.hxx"
#include "config/ConfigError.hxx"
+#include "config/Block.hxx"
#include "util/Error.hxx"
#include <algorithm>
@@ -34,8 +35,8 @@
static bool
filter_chain_append_new(Filter &chain, const char *template_name, Error &error)
{
- const struct config_param *cfg =
- config_find_block(CONF_AUDIO_FILTER, "name", template_name);
+ const auto *cfg = config_find_block(ConfigBlockOption::AUDIO_FILTER,
+ "name", template_name);
if (cfg == nullptr) {
error.Format(config_domain,
"filter template not found: %s",