diff options
author | Max Kellermann <max@duempel.org> | 2012-09-25 12:10:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-09-25 12:20:15 +0200 |
commit | 98dbc959133272d7339496f92a7f6750919e35c6 (patch) | |
tree | 13dd3464693386e1c9bed69a2e4c9a1d63ae5f1a | |
parent | 145c1d214c174e5162910b736d0baca0920aa2e0 (diff) | |
download | mpd-98dbc959133272d7339496f92a7f6750919e35c6.tar.gz mpd-98dbc959133272d7339496f92a7f6750919e35c6.tar.xz mpd-98dbc959133272d7339496f92a7f6750919e35c6.zip |
rename CommandError.h to CommandError.hxx
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/AllCommands.cxx | 1 | ||||
-rw-r--r-- | src/CommandError.cxx | 2 | ||||
-rw-r--r-- | src/CommandError.hxx (renamed from src/CommandError.h) | 8 | ||||
-rw-r--r-- | src/DatabaseCommands.cxx | 2 | ||||
-rw-r--r-- | src/OtherCommands.cxx | 2 | ||||
-rw-r--r-- | src/PlayerCommands.cxx | 2 | ||||
-rw-r--r-- | src/PlaylistCommands.cxx | 2 | ||||
-rw-r--r-- | src/QueueCommands.cxx | 2 |
9 files changed, 9 insertions, 14 deletions
diff --git a/Makefile.am b/Makefile.am index 02ea9a3b6..23d2f4e4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -234,7 +234,7 @@ src_mpd_SOURCES = \ src/audio_parser.c \ src/protocol/argparser.c src/protocol/argparser.h \ src/protocol/result.c src/protocol/result.h \ - src/CommandError.cxx src/CommandError.h \ + src/CommandError.cxx src/CommandError.hxx \ src/AllCommands.cxx \ src/QueueCommands.cxx src/QueueCommands.hxx \ src/PlayerCommands.cxx src/PlayerCommands.hxx \ diff --git a/src/AllCommands.cxx b/src/AllCommands.cxx index 762ae73d7..003fcbe3b 100644 --- a/src/AllCommands.cxx +++ b/src/AllCommands.cxx @@ -27,7 +27,6 @@ #include "StickerCommands.hxx" #include "MessageCommands.hxx" #include "OtherCommands.hxx" -#include "CommandError.h" #include "permission.h" #include "tag.h" diff --git a/src/CommandError.cxx b/src/CommandError.cxx index 96b0095ae..428a615e5 100644 --- a/src/CommandError.cxx +++ b/src/CommandError.cxx @@ -18,7 +18,7 @@ */ #include "config.h" -#include "CommandError.h" +#include "CommandError.hxx" #include "db_error.h" extern "C" { diff --git a/src/CommandError.h b/src/CommandError.hxx index f43afdb3d..a90e24427 100644 --- a/src/CommandError.h +++ b/src/CommandError.hxx @@ -17,16 +17,14 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_COMMAND_ERROR_H -#define MPD_COMMAND_ERROR_H +#ifndef MPD_COMMAND_ERROR_HXX +#define MPD_COMMAND_ERROR_HXX #include "command.h" #include "playlist_error.h" #include <glib.h> -G_BEGIN_DECLS - enum command_return print_playlist_result(struct client *client, enum playlist_result result); @@ -36,6 +34,4 @@ print_playlist_result(struct client *client, enum playlist_result result); enum command_return print_error(struct client *client, GError *error); -G_END_DECLS - #endif diff --git a/src/DatabaseCommands.cxx b/src/DatabaseCommands.cxx index 14e83e96a..c3c22482e 100644 --- a/src/DatabaseCommands.cxx +++ b/src/DatabaseCommands.cxx @@ -23,7 +23,7 @@ #include "DatabasePlaylist.hxx" #include "DatabasePrint.hxx" #include "DatabaseSelection.hxx" -#include "CommandError.h" +#include "CommandError.hxx" #include "client_internal.h" #include "tag.h" #include "uri.h" diff --git a/src/OtherCommands.cxx b/src/OtherCommands.cxx index 29ddd9962..1442ef05a 100644 --- a/src/OtherCommands.cxx +++ b/src/OtherCommands.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "OtherCommands.hxx" #include "DatabaseCommands.hxx" -#include "CommandError.h" +#include "CommandError.hxx" #include "directory.h" #include "song.h" diff --git a/src/PlayerCommands.cxx b/src/PlayerCommands.cxx index 030e8016d..015ac9a15 100644 --- a/src/PlayerCommands.cxx +++ b/src/PlayerCommands.cxx @@ -19,7 +19,7 @@ #include "config.h" #include "PlayerCommands.hxx" -#include "CommandError.h" +#include "CommandError.hxx" #include "PlaylistPrint.hxx" extern "C" { diff --git a/src/PlaylistCommands.cxx b/src/PlaylistCommands.cxx index d6be3ff30..2789e6c43 100644 --- a/src/PlaylistCommands.cxx +++ b/src/PlaylistCommands.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "PlaylistCommands.hxx" #include "DatabasePlaylist.hxx" -#include "CommandError.h" +#include "CommandError.hxx" #include "PlaylistPrint.hxx" extern "C" { diff --git a/src/QueueCommands.cxx b/src/QueueCommands.cxx index 5dac6a8a0..cdd58d31e 100644 --- a/src/QueueCommands.cxx +++ b/src/QueueCommands.cxx @@ -19,7 +19,7 @@ #include "config.h" #include "QueueCommands.hxx" -#include "CommandError.h" +#include "CommandError.hxx" #include "DatabaseQueue.hxx" #include "SongFilter.hxx" #include "PlaylistPrint.hxx" |