]> Shamusworld >> Repos - virtualjaguar/commitdiff
Fix typo in signal name
authorTeemu Hukkanen <tjhukkan@iki.fi>
Fri, 28 Jun 2013 18:13:19 +0000 (19:13 +0100)
committerTeemu Hukkanen <tjhukkan@iki.fi>
Fri, 28 Jun 2013 18:15:37 +0000 (19:15 +0100)
src/gui/controllertab.cpp

index bc8274f3dd3ccd588693eb4bf8c362978357052f..98080032851a6d9168816c52ba8e5aad25411654 100644 (file)
@@ -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()));