From: Teemu Hukkanen Date: Fri, 28 Jun 2013 18:13:19 +0000 (+0100) Subject: Fix typo in signal name X-Git-Tag: 2.1.1~24 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=virtualjaguar;a=commitdiff_plain;h=724cfe57529662c45d4ac2b8ab96ca514340f1a4 Fix typo in signal name --- diff --git a/src/gui/controllertab.cpp b/src/gui/controllertab.cpp index bc8274f..9808003 100644 --- a/src/gui/controllertab.cpp +++ b/src/gui/controllertab.cpp @@ -61,7 +61,7 @@ ControllerTab::ControllerTab(QWidget * parent/*= 0*/): QWidget(parent), setFixedWidth(sizeHint().width()); connect(redefineAll, SIGNAL(clicked()), this, SLOT(DefineAllKeys())); - connect(deviceList, SIGNAL(activaed(int)), this, SLOT(ChangeDevice(int))); + connect(deviceList, SIGNAL(activated(int)), this, SLOT(ChangeDevice(int))); connect(mapNameList, SIGNAL(activated(int)), this, SLOT(ChangeMapName(int))); connect(addMapName, SIGNAL(clicked()), this, SLOT(AddMapName())); connect(deleteMapName, SIGNAL(clicked()), this, SLOT(DeleteMapName()));