Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
04a9dec9
Commit
04a9dec9
authored
Aug 29, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_print: rename to PlaylistPrint.cxx
parent
6ee76b71
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
11 deletions
+13
-11
Makefile.am
Makefile.am
+1
-2
PlayerCommands.cxx
src/PlayerCommands.cxx
+1
-1
PlaylistCommands.cxx
src/PlaylistCommands.cxx
+1
-1
PlaylistPrint.cxx
src/PlaylistPrint.cxx
+6
-3
PlaylistPrint.hxx
src/PlaylistPrint.hxx
+3
-3
QueueCommands.cxx
src/QueueCommands.cxx
+1
-1
No files found.
Makefile.am
View file @
04a9dec9
...
...
@@ -154,7 +154,6 @@ mpd_headers = \
src/playlist.h
\
src/playlist_error.h
\
src/playlist_internal.h
\
src/playlist_print.h
\
src/playlist_save.h
\
src/playlist_state.h
\
src/playlist_plugin.h
\
...
...
@@ -324,7 +323,7 @@ src_mpd_SOURCES = \
src/playlist_global.c
\
src/playlist_control.c
\
src/playlist_edit.c
\
src/
playlist_print.c
\
src/
PlaylistPrint.cxx src/PlaylistPrint.hxx
\
src/playlist_save.c
\
src/playlist_mapper.c
\
src/playlist_any.c
\
...
...
src/PlayerCommands.cxx
View file @
04a9dec9
...
...
@@ -20,13 +20,13 @@
#include "config.h"
#include "PlayerCommands.hxx"
#include "CommandError.h"
#include "PlaylistPrint.hxx"
extern
"C"
{
#include "protocol/argparser.h"
#include "protocol/result.h"
#include "player_control.h"
#include "playlist.h"
#include "playlist_print.h"
#include "update.h"
#include "volume.h"
#include "client.h"
...
...
src/PlaylistCommands.cxx
View file @
04a9dec9
...
...
@@ -21,12 +21,12 @@
#include "PlaylistCommands.hxx"
#include "DatabasePlaylist.hxx"
#include "CommandError.h"
#include "PlaylistPrint.hxx"
extern
"C"
{
#include "protocol/argparser.h"
#include "protocol/result.h"
#include "playlist.h"
#include "playlist_print.h"
#include "playlist_save.h"
#include "playlist_queue.h"
#include "time_print.h"
...
...
src/
playlist_print.c
→
src/
PlaylistPrint.cxx
View file @
04a9dec9
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
2
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -18,7 +18,9 @@
*/
#include "config.h"
#include "playlist_print.h"
#include "PlaylistPrint.hxx"
extern
"C"
{
#include "playlist_list.h"
#include "playlist_plugin.h"
#include "playlist_any.h"
...
...
@@ -31,6 +33,7 @@
#include "database.h"
#include "client.h"
#include "input_stream.h"
}
void
playlist_print_uris
(
struct
client
*
client
,
const
struct
playlist
*
playlist
)
...
...
@@ -120,7 +123,7 @@ spl_print(struct client *client, const char *name_utf8, bool detail,
return
false
;
for
(
unsigned
i
=
0
;
i
<
list
->
len
;
++
i
)
{
const
char
*
temp
=
g_ptr_array_index
(
list
,
i
);
const
char
*
temp
=
(
const
char
*
)
g_ptr_array_index
(
list
,
i
);
bool
wrote
=
false
;
if
(
detail
)
{
...
...
src/
playlist_print.h
→
src/
PlaylistPrint.hxx
View file @
04a9dec9
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
2
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
PLAYLIST_PRINT_H
#define
PLAYLIST_PRINT_H
#ifndef
MPD_PLAYLIST_PRINT_HXX
#define
MPD_PLAYLIST_PRINT_HXX
#include <glib.h>
#include <stdbool.h>
...
...
src/QueueCommands.cxx
View file @
04a9dec9
...
...
@@ -22,12 +22,12 @@
#include "CommandError.h"
#include "DatabaseQueue.hxx"
#include "SongFilter.hxx"
#include "PlaylistPrint.hxx"
extern
"C"
{
#include "protocol/argparser.h"
#include "protocol/result.h"
#include "playlist.h"
#include "playlist_print.h"
#include "ls.h"
#include "uri.h"
#include "client_internal.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment