author | simon <simon> | 2002-12-09 16:31:17 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-09 16:31:17 (UTC) |
commit | 8eb71085cec5e24e20b441ceae9e5e66448405b3 (patch) (side-by-side diff) | |
tree | e970320e0052c2c5986d3f53a837aec90e2f9177 | |
parent | 3b31b000db15e7618b3ef06a652bae41d87a1348 (diff) | |
download | opie-8eb71085cec5e24e20b441ceae9e5e66448405b3.zip opie-8eb71085cec5e24e20b441ceae9e5e66448405b3.tar.gz opie-8eb71085cec5e24e20b441ceae9e5e66448405b3.tar.bz2 |
- less indexing
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index c3e206c..3838e2c 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp @@ -119,3 +119,3 @@ AudioWidget::AudioWidget( PlayListWidget &playList, MediaPlayerState &mediaPlaye if ( !qRed( imgMask.pixel( x, y ) ) ) - line[x] = i + 1; + line[x] = button.command + 1; } @@ -340,2 +340,3 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { Button &button = buttons[ i ]; + Command command = button.command; @@ -343,3 +344,3 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { // The test to see if the mouse click is inside the button or not - bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, i ); + bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); @@ -348,3 +349,3 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { toggleButton( button ); - switch (i) { + switch ( command ) { case VolumeUp: @@ -361,2 +362,3 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { return; + default: break; } @@ -373,3 +375,3 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { qDebug("mouseEvent %d", i); - handleCommand( static_cast<Command>( i ), button.isDown ); + handleCommand( command, button.isDown ); } |