diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-06-14 13:16:51 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-06-14 13:16:51 +0000 |
commit | 7035002df1855077f01da1e4283d44e3efa1a778 (patch) | |
tree | 0c6cd13e2ac04689cc6ef3a776042b4fbf310d37 /kde-base/kmix/files | |
parent | [kde-base/kmilo] Clean unneeded patches (diff) | |
download | gentoo-2-7035002df1855077f01da1e4283d44e3efa1a778.tar.gz gentoo-2-7035002df1855077f01da1e4283d44e3efa1a778.tar.bz2 gentoo-2-7035002df1855077f01da1e4283d44e3efa1a778.zip |
[kde-base/kmix] Clean unneeded patches
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'kde-base/kmix/files')
-rw-r--r-- | kde-base/kmix/files/kmix-3.5.8-198015_XF86Audio.patch | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/kde-base/kmix/files/kmix-3.5.8-198015_XF86Audio.patch b/kde-base/kmix/files/kmix-3.5.8-198015_XF86Audio.patch deleted file mode 100644 index 1190e717ee01..000000000000 --- a/kde-base/kmix/files/kmix-3.5.8-198015_XF86Audio.patch +++ /dev/null @@ -1,58 +0,0 @@ -From efbae8873fc7b2ffe366353a1bcd9623cf4975a3 Mon Sep 17 00:00:00 2001 -From: Kelvie Wong <kelvie@ieee.org> -Date: Sat, 3 Nov 2007 21:39:49 -0700 -Subject: [PATCH] Added a masterDeviceIndex dcop call that returns the device index of the master channel - ---- - kmix/mixer.cpp | 5 +++++ - kmix/mixer.h | 1 + - kmix/mixerIface.h | 5 +++++ - 3 files changed, 11 insertions(+), 0 deletions(-) - -diff --git a/kmix/mixer.cpp b/kmix/mixer.cpp -index 2adb300..316625e 100644 ---- a/kmix/mixer.cpp -+++ b/kmix/mixer.cpp -@@ -730,6 +730,11 @@ bool Mixer::masterMute() - return true; - } - -+// @dcop only -+int Mixer::masterDeviceIndex() -+{ -+ return masterDevice()->num(); -+} - - bool Mixer::isRecordSource( int deviceidx ) - { -diff --git a/kmix/mixer.h b/kmix/mixer.h -index 14c8a65..b6d0917 100644 ---- a/kmix/mixer.h -+++ b/kmix/mixer.h -@@ -123,6 +123,7 @@ class Mixer : public QObject, virtual public MixerIface - virtual long absoluteVolumeMax( int deviceidx ); - virtual int volume( int deviceidx ); - virtual int masterVolume(); -+ virtual int masterDeviceIndex(); - - virtual void setMute( int deviceidx, bool on ); - virtual void setMasterMute( bool on ); -diff --git a/kmix/mixerIface.h b/kmix/mixerIface.h -index b2aafb2..6c8da9f 100644 ---- a/kmix/mixerIface.h -+++ b/kmix/mixerIface.h -@@ -85,6 +85,11 @@ k_dcop: - virtual bool masterMute()=0; - - /** -+ Returns the index of the master device -+ */ -+ virtual int masterDeviceIndex()=0; -+ -+ /** - Makes the given device a record source. - */ - virtual void setRecordSource( int deviceidx, bool on )=0; --- -1.5.3.4 - |