Minor about dialog improvement.

This commit is contained in:
LoRd_MuldeR 2010-12-27 20:56:29 +01:00
parent 12a6cd1c25
commit 6f47dc260a
5 changed files with 9 additions and 7 deletions

View File

@ -38,6 +38,7 @@
<file>icons/drive_cd.png</file>
<file>icons/exclamation.png</file>
<file>icons/error.png</file>
<file>icons/error_big.png</file>
<file>icons/feed.png</file>
<file>icons/folder_add.png</file>
<file>icons/folder_go.png</file>
@ -47,6 +48,7 @@
<file>icons/hourglass.png</file>
<file>icons/information.png</file>
<file>icons/media_play.png</file>
<file>icons/money_dollar.png</file>
<file>icons/monitor.png</file>
<file>icons/music.png</file>
<file>icons/package.png</file>

BIN
res/icons/error_big.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -25,7 +25,7 @@
#define VER_LAMEXP_MAJOR 4
#define VER_LAMEXP_MINOR_HI 0
#define VER_LAMEXP_MINOR_LO 0
#define VER_LAMEXP_BUILD 188
#define VER_LAMEXP_BUILD 189
#define VER_LAMEXP_SUFFIX TechPreview
/*

View File

@ -75,11 +75,10 @@ AboutDialog::AboutDialog(SettingsModel *settings, QWidget *parent, bool firstSta
aboutText += "You should have received a copy of the GNU General Public License<br>";
aboutText += "along with this program; if not, write to the Free Software<br>";
aboutText += "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</tt></nobr><br>";
if(!firstStart)
{
aboutText += QString("<br>Please see %1 for details!</br><br>").arg(LINK("http://www.gnu.org/licenses/gpl-2.0.txt"));
}
aboutText += "<hr><br>";
aboutText += "<hr><table><tr>";
aboutText += "<td valign=\"middle\"><img src=\":/icons/error_big.png\"</td><td>&nbsp;</td>";
aboutText += "<td><font color=\"darkred\">Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!!</font></td>";
aboutText += "</tr></table><hr><br>";
aboutText += QString("Special thanks go out to \"John33\" from %1 for his continuous support.<br>").arg(LINK("http://www.rarewares.org/"));
setText(aboutText);

View File

@ -490,7 +490,8 @@ void MainWindow::windowShown(void)
m_settings->licenseAccepted(-1);
QApplication::processEvents();
PlaySound(MAKEINTRESOURCE(IDR_WAVE_WHAMMY), GetModuleHandle(NULL), SND_RESOURCE | SND_SYNC);
QMessageBox::critical(this, "License Declined", "You have declined the license. Consequently the application will exit now!");
QMessageBox::critical(this, "License Declined", "You have declined the license. Consequently the application will exit now!", "Goodbye!");
QProcess::startDetached(QString("%1/Uninstall.exe").arg(QApplication::applicationDirPath()), QStringList());
QApplication::quit();
return;
}