Merge branch 'develop'
[clinton/Virtual-Jaguar-Rx.git] / src / gui / configdialog.cpp
index cdf58cd..a665730 100644 (file)
@@ -6,6 +6,7 @@
 //
 // JLH = James Hammons <jlhamm@acm.org>
 // JPM = Jean-Paul Mari <djipi.mari@gmail.com>
+//  RG = Richard Goedeken
 //
 // Who  When        What
 // ---  ----------  ------------------------------------------------------------
@@ -16,6 +17,7 @@
 // JPM  06/19/2016  Soft debugger support
 // JPM  09/  /2017  Added a Keybindings tab
 // JPM  09/03/2018  Added a Models & Bios tab
+//  RG   Jan./2021  Linux build fix
 //
 
 #include "configdialog.h"
@@ -25,7 +27,7 @@
 #include "controllerwidget.h"
 #include "generaltab.h"
 #include "modelsbiostab.h"
-#include "KeyBindingsTab.h"
+#include "keybindingstab.h"
 #include "settings.h"
 
 
@@ -48,11 +50,11 @@ keybindingsTab(new KeyBindingsTab(this))
 
        tabWidget->addTab(generalTab, tr("General"));
 #ifdef NEWMODELSBIOSHANDLER
-       tabWidget->addTab(modelsbiosTab, tr("Models and Bios"));
+       tabWidget->addTab(modelsbiosTab, tr("Models and BIOS"));
 #endif
        tabWidget->addTab(controllerTab1, tr("Controllers"));
 //     tabWidget->addTab(controllerTab2, tr("Controller #2"));
-       tabWidget->addTab(keybindingsTab, tr("Keybindings"));
+       tabWidget->addTab(keybindingsTab, tr("Key Bindings"));
 
        if (vjs.hardwareTypeAlpine || vjs.softTypeDebugger)
        {