summaryrefslogtreecommitdiffstats
path: root/src/paman.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/paman.cc')
-rw-r--r--src/paman.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/paman.cc b/src/paman.cc
index 4813724..cb8122e 100644
--- a/src/paman.cc
+++ b/src/paman.cc
@@ -24,8 +24,8 @@
#include <gtkmm.h>
#include <libglademm.h>
-#include <polyp/polypaudio.h>
-#include <polyp/glib-mainloop.h>
+#include <pulse/pulseaudio.h>
+#include <pulse/glib-mainloop.h>
#include "paman.hh"
#include "SinkWindow.hh"
@@ -36,7 +36,7 @@ ServerInfoManager *serverInfoManager = NULL;
struct pa_context *context = NULL;
struct pa_mainloop_api *mainloop_api = NULL;
-#define WINDOW_TITLE "Polypaudio Manager"
+#define WINDOW_TITLE "PulseAudio Manager"
static void context_state_callback(struct pa_context *c, void *) {
g_assert(c && mainWindow);
@@ -97,7 +97,7 @@ void createConnection() {
context = NULL;
}
- context = pa_context_new(mainloop_api, "Polypaudio Manager");
+ context = pa_context_new(mainloop_api, "PulseAudio Manager");
g_assert(context);
pa_context_set_state_callback(context, context_state_callback, NULL);
pa_context_connect(context, NULL, (pa_context_flags_t) 0, NULL);