X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fcontrollertab.cpp;h=1af9f45572fc6801efcbcf481ba0e89709d0fa30;hb=685bb45b7766e8a12cd0de8ee486b9a61183c425;hp=957e568b1d7a32144ae219ce19fbc5283ed6c3d0;hpb=f30bf746981a99079e766b0d4e9de5391a4175ff;p=virtualjaguar diff --git a/src/gui/controllertab.cpp b/src/gui/controllertab.cpp index 957e568..1af9f45 100644 --- a/src/gui/controllertab.cpp +++ b/src/gui/controllertab.cpp @@ -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(); } } +