Updated some URL string.

This commit is contained in:
LoRd_MuldeR 2012-08-20 22:23:38 +02:00
parent b5f6e8238a
commit 8d6774ba24
3 changed files with 7 additions and 5 deletions

View File

@ -174,7 +174,7 @@ is free software. If you don't trust the pre-compiled LameXP binaries that we pr
<br> <br>
Another important fact to consider is that for the creator of LameXP, it is impossible to know WHY a specific<br> Another important fact to consider is that for the creator of LameXP, it is impossible to know WHY a specific<br>
anti-virus program is failing on our software. That's because anti-virus programs usually are proprietary<br> anti-virus program is failing on our software. That's because anti-virus programs usually are proprietary<br>
CloseSource applications, so we cannot know what is going on "behind the scenes". Consequently any attempt to<br> ClosedSource applications, so we cannot know what's going on "behind the scenes". Consequently any attempt to<br>
guess what "aspect" of LameXP the anti-virus software is misinterpreting as malware would be pure speculation<br> guess what "aspect" of LameXP the anti-virus software is misinterpreting as malware would be pure speculation<br>
and might even change with the next anti-virus update. Only the developer of the anti-virus program can fix<br> and might even change with the next anti-virus update. Only the developer of the anti-virus program can fix<br>
bugs inside the anti-virus program. So please report these bugs to the developer of your anti-virus program!<br> bugs inside the anti-virus program. So please report these bugs to the developer of your anti-virus program!<br>

View File

@ -30,7 +30,7 @@
#define VER_LAMEXP_MINOR_LO 5 #define VER_LAMEXP_MINOR_LO 5
#define VER_LAMEXP_TYPE Beta #define VER_LAMEXP_TYPE Beta
#define VER_LAMEXP_PATCH 4 #define VER_LAMEXP_PATCH 4
#define VER_LAMEXP_BUILD 1091 #define VER_LAMEXP_BUILD 1092
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Tool versions (minimum expected versions!) // Tool versions (minimum expected versions!)

View File

@ -1203,7 +1203,7 @@ void MainWindow::windowShown(void)
{ {
QString message; QString message;
message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("<br>"); message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("<br>");
message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("<a href=\"http://lamexp.git.sourceforge.net/git/gitweb.cgi?p=lamexp/lamexp;a=blob_plain;f=doc/FAQ.html;hb=HEAD#df406578\">F.A.Q.</a>").append("<br>"); message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("<a href=\"http://lamexp.sourceforge.net/doc/FAQ.html#df406578\">F.A.Q.</a>").append("<br>");
if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1) if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1)
{ {
m_settings->antivirNotificationsEnabled(false); m_settings->antivirNotificationsEnabled(false);
@ -1346,7 +1346,7 @@ void MainWindow::showAnnounceBox(void)
( (
NOBR("We are still looking for LameXP translators!"), NOBR("We are still looking for LameXP translators!"),
NOBR("If you are willing to translate LameXP to your language or to complete an existing translation, please refer to:"), NOBR("If you are willing to translate LameXP to your language or to complete an existing translation, please refer to:"),
LINK("http://mulder.brhack.net/public/doc/lamexp_translate.html") LINK("http://lamexp.sourceforge.net/doc/Translate.html")
); );
QMessageBox *announceBox = new QMessageBox(QMessageBox::Warning, "We want you!", announceText, QMessageBox::NoButton, this); QMessageBox *announceBox = new QMessageBox(QMessageBox::Warning, "We want you!", announceText, QMessageBox::NoButton, this);
@ -3376,9 +3376,11 @@ void MainWindow::updateBitrate(int value)
*/ */
void MainWindow::compressionTabEventOccurred(QWidget *sender, QEvent *event) void MainWindow::compressionTabEventOccurred(QWidget *sender, QEvent *event)
{ {
static const QUrl helpUrl("http://lamexp.sourceforge.net/doc/FAQ.html#054010d9");
if((sender == labelCompressionHelp) && (event->type() == QEvent::MouseButtonPress)) if((sender == labelCompressionHelp) && (event->type() == QEvent::MouseButtonPress))
{ {
QDesktopServices::openUrl(QUrl("http://lamexp.git.sourceforge.net/git/gitweb.cgi?p=lamexp/lamexp;a=blob_plain;f=doc/FAQ.html;hb=HEAD#054010d9")); QDesktopServices::openUrl(helpUrl);
} }
} }