summaryrefslogtreecommitdiffstats
path: root/kmix/kmix.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-05-21 17:14:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-05-25 13:24:34 +0900
commite1b2705c5dc6c888924dda8f57c88edeb43494ba (patch)
treecd5bd817bfcec80166b7192bbfa648cafe77e88d /kmix/kmix.h
parentbc9049aa6f9297a4927ec6e5720bd38276660309 (diff)
downloadtdemultimedia-e1b2705c5dc6c888924dda8f57c88edeb43494ba.tar.gz
tdemultimedia-e1b2705c5dc6c888924dda8f57c88edeb43494ba.zip
KMix: fixed rounding error on volume reading. This was preventing 1% volume increase steps from working properly.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmix/kmix.h')
-rw-r--r--kmix/kmix.h2
1 files changed, 1 insertions, 1 deletions
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();