X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fabout.cpp;h=78f33bb4c22bf485f69016de9e54ee0f3167737f;hb=742d2aa9bb46bce4f690474fa22f5980e175e55e;hp=17b4f963c058d37ac203876d369d0d286421d085;hpb=db0a3d91f37031e155cc8eac7cfdec9889f233ee;p=architektonas diff --git a/src/about.cpp b/src/about.cpp index 17b4f96..78f33bb 100644 --- a/src/about.cpp +++ b/src/about.cpp @@ -7,7 +7,7 @@ // JLH = James Hammons // // Who When What -// --- ---------- ------------------------------------------------------------- +// --- ---------- ------------------------------------------------------------ // JLH 01/21/2010 Created this file // JLH 01/22/2010 Fleshed out the credits a bit more // JLH 01/22/2010 Fixed centering and decorating of window @@ -19,7 +19,6 @@ #include "about.h" //testing... #include "structs.h" - AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) { setWindowTitle(tr("About Architektonas...")); @@ -64,10 +63,8 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) layout->addWidget(text); } - void AboutWindow::keyPressEvent(QKeyEvent * e) { if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return) hide(); } -