summaryrefslogtreecommitdiff
path: root/src/tag
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-07-17 22:34:11 +0200
committerMax Kellermann <max@musicpd.org>2018-07-17 22:34:11 +0200
commit24a86dce213a6c0caea80efc808fff93a480496a (patch)
tree9a4154093fe43ea4bc3a797c82fc9de679501c21 /src/tag
parent0209bc4ba7112792ab3b88e6aff548ad5da04d63 (diff)
tag/Config: use struct ConfigData
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/Config.cxx6
-rw-r--r--src/tag/Config.hxx4
2 files changed, 6 insertions, 4 deletions
diff --git a/src/tag/Config.cxx b/src/tag/Config.cxx
index a08239efd..07232f3f3 100644
--- a/src/tag/Config.cxx
+++ b/src/tag/Config.cxx
@@ -21,7 +21,7 @@
#include "Config.hxx"
#include "Settings.hxx"
#include "ParseName.hxx"
-#include "config/Global.hxx"
+#include "config/Data.hxx"
#include "config/Option.hxx"
#include "util/Alloc.hxx"
#include "util/ASCII.hxx"
@@ -31,9 +31,9 @@
#include <stdlib.h>
void
-TagLoadConfig()
+TagLoadConfig(const ConfigData &config)
{
- const char *value = config_get_string(ConfigOption::METADATA_TO_USE);
+ const char *value = config.GetString(ConfigOption::METADATA_TO_USE);
if (value == nullptr)
return;
diff --git a/src/tag/Config.hxx b/src/tag/Config.hxx
index 47d1eb835..afbf8e817 100644
--- a/src/tag/Config.hxx
+++ b/src/tag/Config.hxx
@@ -20,7 +20,9 @@
#ifndef MPD_TAG_CONFIG_HXX
#define MPD_TAG_CONFIG_HXX
+struct ConfigData;
+
void
-TagLoadConfig();
+TagLoadConfig(const ConfigData &config);
#endif