From e1b2705c5dc6c888924dda8f57c88edeb43494ba Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 21 May 2020 17:14:22 +0900 Subject: KMix: fixed rounding error on volume reading. This was preventing 1% volume increase steps from working properly. Signed-off-by: Michele Calgaro --- kmix/kmix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kmix/kmix.h') diff --git a/kmix/kmix.h b/kmix/kmix.h index e24c457a..c41beb65 100644 --- a/kmix/kmix.h +++ b/kmix/kmix.h @@ -65,7 +65,7 @@ KMixWindow : public TDEMainWindow, virtual public KMixIface void setVolume(int percentage); void increaseVolume(int percentage); void decreaseVolume(int percentage); - int volume(); + int volume(); void setAbsoluteVolume(long absoluteVolume); long absoluteVolume(); -- cgit v1.2.1