summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/audiowidget.cpp12
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 ) {
// does not stop stream when it reaches the end
- slider->show();
+ slider.show();
connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
@@ -300,11 +300,11 @@ void AudioWidget::updateSlider( long i, long max ) {
// Scale to something reasonable
- int width = slider->width();
+ int width = slider.width();
int val = int((double)i * width / max);
if ( !audioSliderBeingMoved ) {
- if ( slider->value() != val ) {
- slider->setValue( val );
+ if ( slider.value() != val ) {
+ slider.setValue( val );
}
- if ( slider->maxValue() != width ) {
- slider->setMaxValue( width );
+ if ( slider.maxValue() != width ) {
+ slider.setMaxValue( width );
}