diff options
author | Max Kellermann <max@duempel.org> | 2013-02-01 17:47:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-02-01 17:47:09 +0100 |
commit | 3894450b10baeaa17c871cb5dc1a0961e0726fae (patch) | |
tree | 66d8b5fa85eb70e13ab0826345103505ab694d58 /src/FilterRegistry.cxx | |
parent | ec07f6ec835abccda5ff7bf346645739fb5e116a (diff) | |
download | mpd-3894450b10baeaa17c871cb5dc1a0961e0726fae.tar.gz mpd-3894450b10baeaa17c871cb5dc1a0961e0726fae.tar.xz mpd-3894450b10baeaa17c871cb5dc1a0961e0726fae.zip |
filter: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/FilterRegistry.cxx (renamed from src/filter_registry.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filter_registry.c b/src/FilterRegistry.cxx index dc1889398..c8aff8298 100644 --- a/src/filter_registry.c +++ b/src/FilterRegistry.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,8 +18,8 @@ */ #include "config.h" -#include "filter_registry.h" -#include "filter_plugin.h" +#include "FilterRegistry.hxx" +#include "FilterPlugin.hxx" #include <stddef.h> #include <string.h> |