summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-04-02 12:45:26 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-04-02 12:45:26 +0000
commit5f4326db42434a4d4c73b40239b832854807a154 (patch)
tree9db534d49cdf011d3f4280016169a104aadea350 /kde-base
parentBump cpphs to 1.16 (diff)
downloadgentoo-2-5f4326db42434a4d4c73b40239b832854807a154.tar.gz
gentoo-2-5f4326db42434a4d4c73b40239b832854807a154.tar.bz2
gentoo-2-5f4326db42434a4d4c73b40239b832854807a154.zip
Remove unused patch.
(Portage version: 2.1.11.59/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'kde-base')
-rw-r--r--kde-base/kmix/ChangeLog6
-rw-r--r--kde-base/kmix/files/kmix-4.10.0-mousewheel-step-313579.patch23
2 files changed, 5 insertions, 24 deletions
diff --git a/kde-base/kmix/ChangeLog b/kde-base/kmix/ChangeLog
index 1594c5c20bb3..050ef77da137 100644
--- a/kde-base/kmix/ChangeLog
+++ b/kde-base/kmix/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for kde-base/kmix
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kmix/ChangeLog,v 1.254 2013/04/01 16:03:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kmix/ChangeLog,v 1.255 2013/04/02 12:45:26 kensington Exp $
+
+ 02 Apr 2013; Michael Palimaka <kensington@gentoo.org>
+ -files/kmix-4.10.0-mousewheel-step-313579.patch:
+ Remove unused patch.
01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> -kmix-4.10.0-r1.ebuild,
-kmix-4.9.5.ebuild:
diff --git a/kde-base/kmix/files/kmix-4.10.0-mousewheel-step-313579.patch b/kde-base/kmix/files/kmix-4.10.0-mousewheel-step-313579.patch
deleted file mode 100644
index 9196a640ba5a..000000000000
--- a/kde-base/kmix/files/kmix-4.10.0-mousewheel-step-313579.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/gui/kmixdockwidget.cpp b/gui/kmixdockwidget.cpp
-index 3bda22e..fee74d9 100644
---- a/gui/kmixdockwidget.cpp
-+++ b/gui/kmixdockwidget.cpp
-@@ -347,10 +347,16 @@ KMixDockWidget::trayWheelEvent(int delta,Qt::Orientation wheelOrientation)
-
- if ( inc < 1 ) inc = 1;
-
-+ if (delta < 0)
-+ inc = -inc;
-+
- if (wheelOrientation == Qt::Horizontal) // Reverse horizontal scroll: bko228780
-- delta = -delta;
-+ inc = -inc;
-
-- long int cv = inc * (delta / 120 );
-+ // bko313579 Do not use "delta", as that is setting more related to documents (Editor, Browser). KMix should
-+ // simply always use its own VOLUME_STEP_DIVISOR as a base for percentage change.
-+ //long int cv = inc * (delta / 120 );
-+ long cv = inc;
- bool isInactive = vol.isCapture() ? !md->isRecSource() : md->isMuted();
- kDebug() << "Operating on capture=" << vol.isCapture() << ", isInactive=" << isInactive;
- if ( cv > 0 && isInactive)