summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-06-20 23:38:49 +0000
committerLennart Poettering <lennart@poettering.net>2006-06-20 23:38:49 +0000
commit01866aaa6add407fb4183cec52f27895f9453611 (patch)
tree0a86d111d42c93a1f0a6d09b694aef851b070844 /src
parentdc4e890e89cffd82c48ef8bdda201afb06f4524d (diff)
s/polyp/pulse/g
git-svn-id: file:///home/lennart/svn/public/paman/trunk@75 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
Diffstat (limited to 'src')
-rw-r--r--src/MainWindow.hh2
-rw-r--r--src/Makefile.am12
-rw-r--r--src/ServerInfoManager.cc2
-rw-r--r--src/ServerInfoManager.hh2
-rw-r--r--src/paman.cc8
-rw-r--r--src/paman.desktop4
-rw-r--r--src/paman.glade6
7 files changed, 18 insertions, 18 deletions
diff --git a/src/MainWindow.hh b/src/MainWindow.hh
index 681cd65..ddf3904 100644
--- a/src/MainWindow.hh
+++ b/src/MainWindow.hh
@@ -24,7 +24,7 @@
#include <gtkmm.h>
#include <libglademm.h>
-#include <polyp/polypaudio.h>
+#include <pulse/pulseaudio.h>
class MainWinow;
diff --git a/src/Makefile.am b/src/Makefile.am
index de381c8..7e36fc9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,19 +1,19 @@
# $Id$
#
-# This file is part of Polypaudio Manager.
+# This file is part of PulseAudio Manager.
#
-# Polypaudio Manager is free software; you can redistribute it and/or modify
+# PulseAudio Manager is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
-# Polypaudio Manager is distributed in the hope that it will be useful, but
+# PulseAudio Manager is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with Polypaudio Manager; if not, write to the Free Software
+# along with PulseAudio Manager; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
@@ -36,7 +36,7 @@ paman_SOURCES=MainWindow.cc MainWindow.hh \
StatWindow.cc StatWindow.hh \
SampleWindow.cc SampleWindow.hh
-paman_LDADD=$(AM_LDADD) $(GUILIBS_LIBS) $(POLYP_LIBS)
-paman_CXXFLAGS=$(AM_CXXFLAGS) $(GUILIBS_CFLAGS) $(POLYP_CFLAGS)
+paman_LDADD=$(AM_LDADD) $(GUILIBS_LIBS) $(PULSE_LIBS)
+paman_CXXFLAGS=$(AM_CXXFLAGS) $(GUILIBS_CFLAGS) $(PULSE_CFLAGS)
paman_CXXFLAGS+=-DGLADE_FILE=\"$(pkgdatadir)/paman.glade\"
#paman_CXXFLAGS+=-DPAVUMETER_PATH=\"/home/lennart/projects/pavumeter/src/pavumeter\"
diff --git a/src/ServerInfoManager.cc b/src/ServerInfoManager.cc
index 0e41cde..27c4602 100644
--- a/src/ServerInfoManager.cc
+++ b/src/ServerInfoManager.cc
@@ -21,7 +21,7 @@
#include <iostream>
-#include <polyp/polypaudio.h>
+#include <pulse/pulseaudio.h>
#include "ServerInfoManager.hh"
#include "paman.hh"
diff --git a/src/ServerInfoManager.hh b/src/ServerInfoManager.hh
index c8ce1d8..80f7c77 100644
--- a/src/ServerInfoManager.hh
+++ b/src/ServerInfoManager.hh
@@ -25,7 +25,7 @@
#include <gtkmm.h>
#include <map>
-#include <polyp/polypaudio.h>
+#include <pulse/pulseaudio.h>
class SinkInfo;
class SourceInfo;
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);
diff --git a/src/paman.desktop b/src/paman.desktop
index c8379b9..8151a67 100644
--- a/src/paman.desktop
+++ b/src/paman.desktop
@@ -1,7 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
-Name=Polypaudio Manager
-Comment=Manage your Polypaudio sound server.
+Name=PulseAudio Manager
+Comment=Manager your PulseAudio sound server.
Exec=paman
Icon=audio-card
StartupNotify=true
diff --git a/src/paman.glade b/src/paman.glade
index 8c37fd4..c299a17 100644
--- a/src/paman.glade
+++ b/src/paman.glade
@@ -5,7 +5,7 @@
<widget class="GtkWindow" id="mainWindow">
<property name="visible">True</property>
- <property name="title" translatable="yes">Polypaudio Manager</property>
+ <property name="title" translatable="yes">PulseAudio Manager</property>
<property name="type">GTK_WINDOW_TOPLEVEL</property>
<property name="window_position">GTK_WIN_POS_NONE</property>
<property name="modal">False</property>
@@ -67,7 +67,7 @@
<child>
<widget class="GtkLabel" id="titleLabel">
<property name="visible">True</property>
- <property name="label" translatable="yes">&lt;span size=&quot;18000&quot; color=&quot;black&quot;&gt;&lt;b&gt;Polypaudio Manager&lt;/b&gt;&lt;/span&gt;</property>
+ <property name="label" translatable="yes">&lt;span size=&quot;18000&quot; color=&quot;black&quot;&gt;&lt;b&gt;PulseAudio Manager&lt;/b&gt;&lt;/span&gt;</property>
<property name="use_underline">False</property>
<property name="use_markup">True</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
@@ -92,7 +92,7 @@
<child>
<widget class="GtkLabel" id="label4825">
<property name="visible">True</property>
- <property name="label" translatable="yes">Use this application to view and modify the Polypaudio Sound Daemon's internals</property>
+ <property name="label" translatable="yes">Use this application to view and modify the PulseAudio Sound Daemon's internals</property>
<property name="use_underline">False</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>