1
0
Fork 0

GUI: Qt about message

This commit is contained in:
mr.exodia 2014-02-20 14:54:11 +01:00
parent c6f4bb0f99
commit 27f7433cc3
1 changed files with 7 additions and 3 deletions

View File

@ -309,11 +309,15 @@ void MainWindow::displayScriptWidget()
void MainWindow::displayAboutWidget()
{
#ifdef _WIN64
const char* title="About x64_dbg";
QString title="About x64_dbg";
#else
const char* title="About x32_dbg";
QString title="About x32_dbg";
#endif
MessageBoxA((HWND)MainWindow::winId(), "Created by:\nSigma (GUI)\nMr. eXoDia (DBG)\n\nSpecial Thanks:\nVisualPharm (http://visualpharm.com)\nReversingLabs (http://reversinglabs.com)\nBeatriX (http://beaengine.org)\nQt Project (http://qt-project.org)\nFugue Icons (http://yusukekamiyamane.com)\nNanomite (https://github.com/zer0fl4g/Nanomite)", title, MB_ICONINFORMATION);
QMessageBox msg(QMessageBox::Information, title, "Created by:\nSigma (GUI)\nMr. eXoDia (DBG)\n\nSpecial Thanks:\nVisualPharm (http://visualpharm.com)\nReversingLabs (http://reversinglabs.com)\nBeatriX (http://beaengine.org)\nQt Project (http://qt-project.org)\nFugue Icons (http://yusukekamiyamane.com)\nNanomite (https://github.com/zer0fl4g/Nanomite)");
msg.setWindowIcon(QIcon(":/icons/images/information.png"));
msg.setParent(this, Qt::Dialog);
msg.setWindowFlags(msg.windowFlags()&(~Qt::WindowContextHelpButtonHint));
msg.exec();
}
void MainWindow::on_actionGoto_triggered()