X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/cf76e892839806b64588635cb6accb636001e62a..da2c308d1a0ab9a34e96d250e26dec30604d5da7:/src/gui/about.cpp diff --git a/src/gui/about.cpp b/src/gui/about.cpp index 456abb7..e749ea1 100644 --- a/src/gui/about.cpp +++ b/src/gui/about.cpp @@ -15,6 +15,7 @@ // JLH 10/08/2011 Updated credits, added Esc & Return as exit keys // JPM 08/14/2017 Updated credits, added flynn // JPM 09/06/2017 Updated flynn credit line to be more specific about the work +// JPM 09/22/2018 Updated Rx credit line to be more specific about the work // // STILL TO DO: @@ -34,7 +35,7 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) QString s; s.append(tr( - "" + "" "" "" "" "" - "" + "" "
Version: " VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ") Rx" @@ -42,12 +43,12 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) "
Coders: James Hammons (shamus)
Niels Wagenaar (nwagenaar)
Carwin Jones (Caz)
Adam Green
Testers: Cyrano Jones, LinkoVitch, partycle, ggn,
neo-rg, Robert R, TheUMan, Dissection,
overridex, geormetal
Build Team: shamus (win32)
goldenegg (MacOS)
Homepage: http://icculus.org/virtualjaguar/
Homepage: http://icculus.org/virtualjaguar/
https://github.com/djipi/Virtual-Jaguar-Rx/
" "

" "Rx version:" "
" - "Flynn for the debugger integration, ELF/DWARF format, Win64 & Visual Studio 2015 support" + "Jean-Paul Mari for the debugger integration, ELF/DWARF format, Win64 & Visual Studio 2017 support, among additional improvements" "

" "The Virtual Jaguar team would like to express their gratitude to:" "

" @@ -68,6 +69,9 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) void AboutWindow::keyPressEvent(QKeyEvent * e) { - if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return) + // close the window + if ((e->key() == Qt::Key_Escape) || (e->key() == Qt::Key_Return)) + { hide(); + } }