]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/controllertab.cpp
Preparation for 2.1.0 release.
[virtualjaguar] / src / gui / controllertab.cpp
index 34ca1558541b30ab1e73709bc150d437eac00c4c..1af9f45572fc6801efcbcf481ba0e89709d0fa30 100644 (file)
@@ -5,7 +5,7 @@
 // (C) 2011 Underground Software
 // See the README and GPLv3 files for licensing and warranty information
 //
-// JLH = James L. Hammons <jlhamm@acm.org>
+// JLH = James Hammons <jlhamm@acm.org>
 //
 // WHO  WHEN        WHAT
 // ---  ----------  ------------------------------------------------------------
@@ -23,7 +23,7 @@
 ControllerTab::ControllerTab(QWidget * parent/*= 0*/): QWidget(parent)
 {
        controllerWidget = new ControllerWidget(this);
-       redefineAll = new QPushButton(tr("Define All Keys"));
+       redefineAll = new QPushButton(tr("Define All Inputs"));
 
        QVBoxLayout * layout = new QVBoxLayout;
        layout->addWidget(controllerWidget);
@@ -33,10 +33,12 @@ ControllerTab::ControllerTab(QWidget * parent/*= 0*/): QWidget(parent)
        connect(redefineAll, SIGNAL(clicked()), this, SLOT(DefineAllKeys()));
 }
 
+
 ControllerTab::~ControllerTab()
 {
 }
 
+
 void ControllerTab::DefineAllKeys(void)
 {
 //     char jagButtonName[21][10] = { "Up", "Down", "Left", "Right",
@@ -60,3 +62,4 @@ void ControllerTab::DefineAllKeys(void)
                controllerWidget->update();
        }
 }
+