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
dbd88e6a
Commit
dbd88e6a
authored
Oct 15, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Client, ...: remove unnecessary glib.h include
parent
45418583
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
1 addition
and
35 deletions
+1
-35
ClientExpire.cxx
src/ClientExpire.cxx
+0
-2
ClientProcess.cxx
src/ClientProcess.cxx
+0
-2
DatabaseGlue.cxx
src/DatabaseGlue.cxx
+0
-2
GlobalEvents.cxx
src/GlobalEvents.cxx
+0
-1
InotifySource.cxx
src/InotifySource.cxx
+0
-2
Listen.cxx
src/Listen.cxx
+0
-2
PlaylistVector.cxx
src/PlaylistVector.cxx
+0
-1
ReplayGainConfig.cxx
src/ReplayGainConfig.cxx
+0
-2
SongUpdate.cxx
src/SongUpdate.cxx
+0
-2
TimePrint.cxx
src/TimePrint.cxx
+0
-2
UpdateDatabase.cxx
src/UpdateDatabase.cxx
+1
-1
Iso9660ArchivePlugin.cxx
src/archive/Iso9660ArchivePlugin.cxx
+0
-2
SimpleDatabasePlugin.cxx
src/db/SimpleDatabasePlugin.cxx
+0
-2
FlacEncoderPlugin.cxx
src/encoder/FlacEncoderPlugin.cxx
+0
-2
ChainFilterPlugin.cxx
src/filter/ChainFilterPlugin.cxx
+0
-2
VolumeFilterPlugin.cxx
src/filter/VolumeFilterPlugin.cxx
+0
-2
PulseMixerPlugin.cxx
src/mixer/PulseMixerPlugin.cxx
+0
-2
PcmConvert.cxx
src/pcm/PcmConvert.cxx
+0
-2
PcmVolume.cxx
src/pcm/PcmVolume.cxx
+0
-2
No files found.
src/ClientExpire.cxx
View file @
dbd88e6a
...
@@ -21,8 +21,6 @@
...
@@ -21,8 +21,6 @@
#include "ClientInternal.hxx"
#include "ClientInternal.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
void
void
Client
::
SetExpired
()
Client
::
SetExpired
()
{
{
...
...
src/ClientProcess.cxx
View file @
dbd88e6a
...
@@ -23,8 +23,6 @@
...
@@ -23,8 +23,6 @@
#include "AllCommands.hxx"
#include "AllCommands.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
#include <string.h>
#include <string.h>
#define CLIENT_LIST_MODE_BEGIN "command_list_begin"
#define CLIENT_LIST_MODE_BEGIN "command_list_begin"
...
...
src/DatabaseGlue.cxx
View file @
dbd88e6a
...
@@ -30,8 +30,6 @@
...
@@ -30,8 +30,6 @@
#include "DatabasePlugin.hxx"
#include "DatabasePlugin.hxx"
#include "db/SimpleDatabasePlugin.hxx"
#include "db/SimpleDatabasePlugin.hxx"
#include <glib.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/stat.h>
#include <unistd.h>
#include <unistd.h>
...
...
src/GlobalEvents.cxx
View file @
dbd88e6a
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include <atomic>
#include <atomic>
#include <assert.h>
#include <assert.h>
#include <glib.h>
namespace
GlobalEvents
{
namespace
GlobalEvents
{
class
Monitor
final
:
public
DeferredMonitor
{
class
Monitor
final
:
public
DeferredMonitor
{
...
...
src/InotifySource.cxx
View file @
dbd88e6a
...
@@ -25,8 +25,6 @@
...
@@ -25,8 +25,6 @@
#include "system/FatalError.hxx"
#include "system/FatalError.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
#include <sys/inotify.h>
#include <sys/inotify.h>
#include <unistd.h>
#include <unistd.h>
...
...
src/Listen.cxx
View file @
dbd88e6a
...
@@ -31,8 +31,6 @@
...
@@ -31,8 +31,6 @@
#include "fs/Path.hxx"
#include "fs/Path.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
#include <string.h>
#include <string.h>
#include <assert.h>
#include <assert.h>
...
...
src/PlaylistVector.cxx
View file @
dbd88e6a
...
@@ -25,7 +25,6 @@
...
@@ -25,7 +25,6 @@
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
#include <glib.h>
PlaylistVector
::
iterator
PlaylistVector
::
iterator
PlaylistVector
::
find
(
const
char
*
name
)
PlaylistVector
::
find
(
const
char
*
name
)
...
...
src/ReplayGainConfig.cxx
View file @
dbd88e6a
...
@@ -25,8 +25,6 @@
...
@@ -25,8 +25,6 @@
#include "Playlist.hxx"
#include "Playlist.hxx"
#include "system/FatalError.hxx"
#include "system/FatalError.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
...
src/SongUpdate.cxx
View file @
dbd88e6a
...
@@ -34,8 +34,6 @@
...
@@ -34,8 +34,6 @@
#include "tag/TagId3.hxx"
#include "tag/TagId3.hxx"
#include "tag/ApeTag.hxx"
#include "tag/ApeTag.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/stat.h>
...
...
src/TimePrint.cxx
View file @
dbd88e6a
...
@@ -21,8 +21,6 @@
...
@@ -21,8 +21,6 @@
#include "TimePrint.hxx"
#include "TimePrint.hxx"
#include "Client.hxx"
#include "Client.hxx"
#include <glib.h>
void
void
time_print
(
Client
*
client
,
const
char
*
name
,
time_t
t
)
time_print
(
Client
*
client
,
const
char
*
name
,
time_t
t
)
{
{
...
...
src/UpdateDatabase.cxx
View file @
dbd88e6a
...
@@ -25,8 +25,8 @@
...
@@ -25,8 +25,8 @@
#include "Song.hxx"
#include "Song.hxx"
#include "DatabaseLock.hxx"
#include "DatabaseLock.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <stddef.h>
void
void
delete_song
(
Directory
*
dir
,
Song
*
del
)
delete_song
(
Directory
*
dir
,
Song
*
del
)
...
...
src/archive/Iso9660ArchivePlugin.cxx
View file @
dbd88e6a
...
@@ -36,8 +36,6 @@
...
@@ -36,8 +36,6 @@
#include <cdio/cdio.h>
#include <cdio/cdio.h>
#include <cdio/iso9660.h>
#include <cdio/iso9660.h>
#include <glib.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
...
src/db/SimpleDatabasePlugin.cxx
View file @
dbd88e6a
...
@@ -33,8 +33,6 @@
...
@@ -33,8 +33,6 @@
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
#include <sys/types.h>
#include <sys/types.h>
#include <errno.h>
#include <errno.h>
...
...
src/encoder/FlacEncoderPlugin.cxx
View file @
dbd88e6a
...
@@ -31,8 +31,6 @@ extern "C" {
...
@@ -31,8 +31,6 @@ extern "C" {
#include "util/growing_fifo.h"
#include "util/growing_fifo.h"
}
}
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
...
...
src/filter/ChainFilterPlugin.cxx
View file @
dbd88e6a
...
@@ -26,8 +26,6 @@
...
@@ -26,8 +26,6 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include <glib.h>
#include <list>
#include <list>
#include <assert.h>
#include <assert.h>
...
...
src/filter/VolumeFilterPlugin.cxx
View file @
dbd88e6a
...
@@ -28,8 +28,6 @@
...
@@ -28,8 +28,6 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
...
...
src/mixer/PulseMixerPlugin.cxx
View file @
dbd88e6a
...
@@ -26,8 +26,6 @@
...
@@ -26,8 +26,6 @@
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
#include "Log.hxx"
#include <glib.h>
#include <pulse/thread-mainloop.h>
#include <pulse/thread-mainloop.h>
#include <pulse/context.h>
#include <pulse/context.h>
#include <pulse/introspect.h>
#include <pulse/introspect.h>
...
...
src/pcm/PcmConvert.cxx
View file @
dbd88e6a
...
@@ -26,8 +26,6 @@
...
@@ -26,8 +26,6 @@
#include "util/Error.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Domain.hxx"
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <math.h>
#include <math.h>
...
...
src/pcm/PcmVolume.cxx
View file @
dbd88e6a
...
@@ -22,8 +22,6 @@
...
@@ -22,8 +22,6 @@
#include "PcmUtils.hxx"
#include "PcmUtils.hxx"
#include "AudioFormat.hxx"
#include "AudioFormat.hxx"
#include <glib.h>
#include <stdint.h>
#include <stdint.h>
#include <string.h>
#include <string.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