diff --git a/doc/FAQ.html b/doc/FAQ.html
index 6a572428..c60113d5 100644
--- a/doc/FAQ.html
+++ b/doc/FAQ.html
@@ -174,7 +174,7 @@ is free software. If you don't trust the pre-compiled LameXP binaries that we pr
Another important fact to consider is that for the creator of LameXP, it is impossible to know WHY a specific
anti-virus program is failing on our software. That's because anti-virus programs usually are proprietary
-CloseSource applications, so we cannot know what is going on "behind the scenes". Consequently any attempt to
+ClosedSource applications, so we cannot know what's going on "behind the scenes". Consequently any attempt to
guess what "aspect" of LameXP the anti-virus software is misinterpreting as malware would be pure speculation
and might even change with the next anti-virus update. Only the developer of the anti-virus program can fix
bugs inside the anti-virus program. So please report these bugs to the developer of your anti-virus program!
diff --git a/src/Config.h b/src/Config.h
index 1114df59..77f3f171 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -30,7 +30,7 @@
#define VER_LAMEXP_MINOR_LO 5
#define VER_LAMEXP_TYPE Beta
#define VER_LAMEXP_PATCH 4
-#define VER_LAMEXP_BUILD 1091
+#define VER_LAMEXP_BUILD 1092
///////////////////////////////////////////////////////////////////////////////
// Tool versions (minimum expected versions!)
diff --git a/src/Dialog_MainWindow.cpp b/src/Dialog_MainWindow.cpp
index d9a771ff..a1f611e4 100644
--- a/src/Dialog_MainWindow.cpp
+++ b/src/Dialog_MainWindow.cpp
@@ -1203,7 +1203,7 @@ void MainWindow::windowShown(void)
{
QString message;
message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("
");
- message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("F.A.Q.").append("
");
+ message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("F.A.Q.").append("
");
if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1)
{
m_settings->antivirNotificationsEnabled(false);
@@ -1346,7 +1346,7 @@ void MainWindow::showAnnounceBox(void)
(
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:"),
- 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);
@@ -3376,9 +3376,11 @@ void MainWindow::updateBitrate(int value)
*/
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))
{
- 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);
}
}