Removed a superfluous MessageBeep().

This commit is contained in:
LoRd_MuldeR 2012-07-31 21:03:43 +02:00
parent 36c8ba7822
commit 87ebf07930
2 changed files with 12 additions and 12 deletions

View File

@ -30,7 +30,7 @@
#define VER_LAMEXP_MINOR_LO 5
#define VER_LAMEXP_TYPE Alpha
#define VER_LAMEXP_PATCH 12
#define VER_LAMEXP_BUILD 1066
#define VER_LAMEXP_BUILD 1067
///////////////////////////////////////////////////////////////////////////////
// Tool versions (minimum expected versions!)

View File

@ -3818,19 +3818,19 @@ void MainWindow::customParamsHelpRequested(QWidget *obj, QEvent *event)
}
}
if(obj == helpCustomParamLAME) showCustomParamsHelpScreen("lame.exe", "--longhelp");
if(obj == helpCustomParamOggEnc) showCustomParamsHelpScreen("oggenc2.exe", "--help" );
if(obj == helpCustomParamNeroAAC)
if(obj == helpCustomParamLAME) showCustomParamsHelpScreen("lame.exe", "--longhelp");
else if(obj == helpCustomParamOggEnc) showCustomParamsHelpScreen("oggenc2.exe", "--help");
else if(obj == helpCustomParamNeroAAC)
{
if(m_qaacEncoderAvailable) showCustomParamsHelpScreen("qaac.exe", "--help" );
else if(m_fhgEncoderAvailable) showCustomParamsHelpScreen("fhgaacenc.exe", "" );
else if(m_neroEncoderAvailable) showCustomParamsHelpScreen("neroAacEnc.exe", "-help" );
if(m_qaacEncoderAvailable) showCustomParamsHelpScreen("qaac.exe", "--help");
else if(m_fhgEncoderAvailable) showCustomParamsHelpScreen("fhgaacenc.exe", "");
else if(m_neroEncoderAvailable) showCustomParamsHelpScreen("neroAacEnc.exe", "-help");
else MessageBeep(MB_ICONERROR);
}
if(obj == helpCustomParamFLAC) showCustomParamsHelpScreen("flac.exe", "--help" );
if(obj == helpCustomParamAften) showCustomParamsHelpScreen("aften.exe", "-h" );
if(obj == helpCustomParamOpus) showCustomParamsHelpScreen("opusenc_std.exe", "--help" );
MessageBeep(MB_ICONERROR);
else if(obj == helpCustomParamFLAC) showCustomParamsHelpScreen("flac.exe", "--help");
else if(obj == helpCustomParamAften) showCustomParamsHelpScreen("aften.exe", "-h");
else if(obj == helpCustomParamOpus) showCustomParamsHelpScreen("opusenc_std.exe", "--help");
else MessageBeep(MB_ICONERROR);
}
/*