summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/volumecontrol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/volumecontrol.cpp b/noncore/multimedia/opieplayer2/volumecontrol.cpp
index 219f63e..a795f3b 100644
--- a/noncore/multimedia/opieplayer2/volumecontrol.cpp
+++ b/noncore/multimedia/opieplayer2/volumecontrol.cpp
@@ -26,14 +26,14 @@ void VolumeControl::setVolume( int volumePerc ) {
26 if ( volumePerc < 0 ) { 26 if ( volumePerc < 0 ) {
27 volumePerc = 0; 27 volumePerc = 0;
28 } 28 }
29 29
30 m_volumePerc = volumePerc; 30 m_volumePerc = volumePerc;
31 cfg.writeEntry("VolumePercent", volumePerc ); 31 cfg.writeEntry("VolumePercent", volumePerc );
32// QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false; 32 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << false;
33 QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0, volumePerc; 33// QCopEnvelope( "QPE/System", "setVolume(int,int)" ) << 0, volumePerc;
34} 34}
35 35
36 36
37void VolumeControl::incVol( int ammount ) { 37void VolumeControl::incVol( int ammount ) {
38 int oldVol = getVolume(); 38 int oldVol = getVolume();
39 setVolume( oldVol + ammount); 39 setVolume( oldVol + ammount);