diff options
author | Max Kellermann <max@duempel.org> | 2013-01-09 23:12:53 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-09 23:31:43 +0100 |
commit | 26ebfc04b0668262976ec4fc38d8780c0937045a (patch) | |
tree | 9bbb7825ea5299c9ebd5ed0343e92da70d0012b6 /test | |
parent | 8782f6d232e43f1424e64c5c1f44d11679cf9c6e (diff) | |
download | mpd-26ebfc04b0668262976ec4fc38d8780c0937045a.tar.gz mpd-26ebfc04b0668262976ec4fc38d8780c0937045a.tar.xz mpd-26ebfc04b0668262976ec4fc38d8780c0937045a.zip |
EventPipe: rename to GlobalEvents
Diffstat (limited to 'test')
-rw-r--r-- | test/read_mixer.cxx | 4 | ||||
-rw-r--r-- | test/run_output.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index c9392ab78..0b6c16359 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -26,7 +26,7 @@ extern "C" { } #include "pcm_volume.h" -#include "EventPipe.hxx" +#include "GlobalEvents.hxx" #include <glib.h> @@ -88,7 +88,7 @@ roar_output_set_volume(G_GNUC_UNUSED struct roar *roar, #endif void -event_pipe_emit(G_GNUC_UNUSED enum pipe_event event) +GlobalEvents::Emit(gcc_unused Event event) { } diff --git a/test/run_output.cxx b/test/run_output.cxx index 68df5e459..9964e47ed 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -21,7 +21,7 @@ #include "OutputControl.hxx" #include "conf.h" #include "Idle.hxx" -#include "EventPipe.hxx" +#include "GlobalEvents.hxx" extern "C" { #include "output_plugin.h" @@ -43,7 +43,7 @@ extern "C" { #include <stdlib.h> void -event_pipe_emit(G_GNUC_UNUSED enum pipe_event event) +GlobalEvents::Emit(gcc_unused Event event) { } |