-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index b82171e..1fae689 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp | |||
@@ -271,3 +271,3 @@ void AudioWidget::setView( char view ) { | |||
271 | // does not stop stream when it reaches the end | 271 | // does not stop stream when it reaches the end |
272 | slider->show(); | 272 | slider.show(); |
273 | connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); | 273 | connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); |
@@ -300,11 +300,11 @@ void AudioWidget::updateSlider( long i, long max ) { | |||
300 | // Scale to something reasonable | 300 | // Scale to something reasonable |
301 | int width = slider->width(); | 301 | int width = slider.width(); |
302 | int val = int((double)i * width / max); | 302 | int val = int((double)i * width / max); |
303 | if ( !audioSliderBeingMoved ) { | 303 | if ( !audioSliderBeingMoved ) { |
304 | if ( slider->value() != val ) { | 304 | if ( slider.value() != val ) { |
305 | slider->setValue( val ); | 305 | slider.setValue( val ); |
306 | } | 306 | } |
307 | 307 | ||
308 | if ( slider->maxValue() != width ) { | 308 | if ( slider.maxValue() != width ) { |
309 | slider->setMaxValue( width ); | 309 | slider.setMaxValue( width ); |
310 | } | 310 | } |