Commit 7af24c4d authored by Max Kellermann's avatar Max Kellermann

playlist_error: convert to C++

parent 7f0ce4e9
......@@ -63,7 +63,6 @@ mpd_headers = \
src/AudioCompress/compress.h \
src/open.h \
src/Playlist.hxx \
src/playlist_error.h \
src/poison.h \
src/riff.h \
src/aiff.h \
......@@ -180,6 +179,7 @@ src_mpd_SOURCES = \
src/PlayerThread.cxx src/PlayerThread.hxx \
src/PlayerControl.cxx src/PlayerControl.hxx \
src/Playlist.cxx \
src/PlaylistError.hxx \
src/PlaylistGlobal.cxx src/PlaylistGlobal.hxx \
src/PlaylistControl.cxx \
src/PlaylistEdit.cxx \
......
......@@ -21,7 +21,7 @@
#define MPD_COMMAND_ERROR_HXX
#include "command.h"
#include "playlist_error.h"
#include "PlaylistError.hxx"
#include "gerror.h"
class Client;
......
......@@ -21,7 +21,7 @@
#define MPD_PLAYLIST_HXX
#include "Queue.hxx"
#include "playlist_error.h"
#include "PlaylistError.hxx"
struct player_control;
struct Song;
......
/*
* 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
......@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_PLAYLIST_ERROR_H
#define MPD_PLAYLIST_ERROR_H
#ifndef MPD_PLAYLIST_ERROR_HXX
#define MPD_PLAYLIST_ERROR_HXX
#include "gcc.h"
......
......@@ -24,7 +24,7 @@
#ifndef MPD_PLAYLIST_QUEUE_HXX
#define MPD_PLAYLIST_QUEUE_HXX
#include "playlist_error.h"
#include "PlaylistError.hxx"
struct playlist_provider;
struct playlist;
......
......@@ -20,7 +20,7 @@
#ifndef MPD_PLAYLIST_SAVE_H
#define MPD_PLAYLIST_SAVE_H
#include "playlist_error.h"
#include "PlaylistError.hxx"
#include <stdio.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment