$NetBSD: patch-ac,v 1.2 2004/01/02 11:30:03 jmmv Exp $

--- player.cpp.orig	1998-10-01 10:00:23.000000000 +0200
+++ player.cpp
@@ -72,7 +72,7 @@ PlayerWidget::PlayerWidget( QWidget *par
 	options = new QPopupMenu;
 	AutoPlayID = options->insertItem( "&Auto Play", this, SLOT(AutoPlay()) );
 	options->setItemChecked( AutoPlayID, isAutoPlay );
-	RepeatID = options->insertItem( "Re&peat", this, SLOT(RepeatPlay()) );
+	RepeatID = options->insertItem( "&Repeat", this, SLOT(RepeatPlay()) );
 	options->setCheckable(TRUE);
 	menubar->insertItem( "&Options",options );
 	menubar->insertSeparator();
@@ -150,7 +150,7 @@ PlayerWidget::PlayerWidget( QWidget *par
 
 	QLabel *label;
 	label = new QLabel( this );
-	label->setText("qP:");
+	label->setText("Artist:");
 	label->setGeometry(5,133,125,30);
 
 	edtName = new QLabel( this );
@@ -158,7 +158,7 @@ PlayerWidget::PlayerWidget( QWidget *par
 	edtName->setGeometry(83,136,100,25);
 
 	label = new QLabel( this );
-	label->setText("MW:");
+	label->setText("Album:");
 	label->setGeometry(5,173,125,30);
 
 	edtAlbum = new QLabel( this );
@@ -166,7 +166,7 @@ PlayerWidget::PlayerWidget( QWidget *par
 	edtAlbum->setGeometry(83,176,100,25);
 
 	label = new QLabel( this );
-	label->setText("o椽q:");
+	label->setText("Company:");
 	label->setGeometry(5,213,125,30);
 
 	edtPub = new QLabel( this );
@@ -242,15 +242,13 @@ void PlayerWidget::GoPlay()
 		song->setText(SongBox->text(SongBox->currentItem()));
 		dclock->Start(SongBox->currentItem());
 		if ((mp3_pid = fork()) == 0 ){
-			char **argv;
-			int i;
-			argv[0]=MP3_PLAYER;
-			argv[1]="-q";
-			argv[2]=(char *)LocBox->text(SongBox->currentItem());
-			argv[3]=NULL;
-			execvp(MP3_PLAYER,argv);
+			execlp(MP3_PLAYER,
+			       MP3_PLAYER,
+			       "-q",
+			       (char *)LocBox->text(SongBox->currentItem()),
+			       NULL);
 			QMessageBox::warning(this,"error","can't exec mpg123\n");
-			exit(1);
+			_exit(1);
 		}
 	}
 }
@@ -359,46 +357,45 @@ void PlayerWidget::OpenFiles()
 
 void PlayerWidget::Usage()
 {
-	char help_txt[] = "
-1. Menu:\n
-1.1 File\n
-    New Album
-	Create an new Album for playing later.
-    Open Files
-	Select some mp3 files you like, and play them
-        in sequence.
-    Save
-	Save all album in the right frame to file.
-    Quit
-	Quit MusicBox.\n
-1.2 View\n
-    Small Panel
-	view controls only.
-    Normal Panel
-	view controls and song list.
-    Completed Panel
-	view all frames.\n
-1.3 Options\n
-    Auto Play
-	Auto Play songs after choosing an album or files.
-    Repeat
-	Rewind, and play them again.\n
-1.4 Help\n
-    Some information about music box\n
-2. Albums:\n
-    Album is a set of songs, you can add name of song to
-    relative file, and singer, album name, and publisher.
-    Make it more readable.\n
-    You can choose an icon to represent an album.GIF,
-    XPM,BMP is supported, The size 48x48 is prefered.\n
-    If you want to edit album information, click mouse 
-    right-button and click edit.\n
-3. Usage:\n
-    You can choose files to play or play album.\n
-*Important*\n
-    \"mpg123\" package must be installed first before using
-    MusicBox.
-";
+	char help_txt[] =
+"1. Menu:\n\n"
+"1.1 File\n\n"
+"    New Album\n"
+"	Create an new Album for playing later.\n"
+"    Open Files\n"
+"	Select some mp3 files you like, and play them\n"
+"        in sequence.\n"
+"    Save\n"
+"	Save all album in the right frame to file.\n"
+"    Quit\n"
+"	Quit MusicBox.\n\n"
+"1.2 View\n\n"
+"    Small Panel\n"
+"	view controls only.\n"
+"    Normal Panel\n"
+"	view controls and song list.\n"
+"    Completed Panel\n"
+"	view all frames.\n\n"
+"1.3 Options\n\n"
+"    Auto Play\n"
+"	Auto Play songs after choosing an album or files.\n"
+"    Repeat\n"
+"	Rewind, and play them again.\n\n"
+"1.4 Help\n\n"
+"    Some information about music box\n\n"
+"2. Albums:\n\n"
+"    Album is a set of songs, you can add name of song to\n"
+"    relative file, and singer, album name, and publisher.\n"
+"    Make it more readable.\n\n"
+"    You can choose an icon to represent an album.GIF,\n"
+"    XPM,BMP is supported, The size 48x48 is prefered.\n\n"
+"    If you want to edit album information, click mouse\n"
+"    right-button and click edit.\n\n"
+"3. Usage:\n\n"
+"    You can choose files to play or play album.\n\n"
+"*Important*\n\n"
+"    \"mpg123\" package must be installed first before using\n"
+"    MusicBox.\n";
 
 	help = new QWidget (0,"help");
 	QVBoxLayout *toplayout = new QVBoxLayout(help,5);
