summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp33
1 files changed, 5 insertions, 28 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp
index 15c70c3..2b58402 100644
--- a/noncore/multimedia/opieplayer2/playlistwidget.cpp
+++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp
@@ -231,3 +231,3 @@ void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , in
QPopupMenu m;
- m.insertItem( tr( "Play" ), this, SLOT( playSelected() ));
+ m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() ));
m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() ));
@@ -247,3 +247,3 @@ void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoi
QPopupMenu m;
- m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() ));
+ m.insertItem( tr( "Play" ), this, SLOT( playSelected() ));
m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() ));
@@ -336,26 +336,2 @@ const DocLnk *PlayListWidget::current() { // this is fugly
break;
- case 1://audio
- {
-// qDebug("audioView");
- QListIterator<DocLnk> dit( files.children() );
- for ( ; dit.current(); ++dit ) {
- if( dit.current()->name() == audioView->currentItem()->text( 0 ) && !insanityBool ) {
- insanityBool = TRUE;
- return dit;
- }
- }
- }
- break;
- case 2: // video
- {
-// qDebug("videoView");
- QListIterator<DocLnk> Vdit( vFiles.children() );
- for ( ; Vdit.current(); ++Vdit ) {
- if( Vdit.current()->name() == videoView->currentItem()->text( 0 ) && !insanityBool) {
- insanityBool = TRUE;
- return Vdit;
- }
- }
- }
- break;
};
@@ -637,2 +613,3 @@ void PlayListWidget::tabChanged(QWidget *) {
void PlayListWidget::btnPlay(bool b) {
+// mediaPlayerState->setPlaying(false);
mediaPlayerState->setPlaying(b);
@@ -1042,3 +1019,3 @@ void PlayListWidget::populateSkinsMenu() {
skinName = fi->fileName();
- qDebug( fi->fileName() );
+// qDebug( fi->fileName() );
if( skinName != "." && skinName != ".." && skinName !="CVS" ) {
@@ -1057,3 +1034,3 @@ void PlayListWidget::populateSkinsMenu() {
void PlayListWidget::skinsMenuActivated( int item ) {
- for( uint i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) {
+ for( int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) {
skinsMenu->setItemChecked( i, FALSE );