chore: Rename tab_handling class to tab_current_profile

This commit is contained in:
Yimura 2021-09-16 22:21:19 +02:00
parent e808b23c93
commit c349cb521f
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682
11 changed files with 11 additions and 11 deletions

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_brakes() void tab_current_profile::tab_brakes()
{ {
if (ImGui::BeginTabItem("Brakes")) if (ImGui::BeginTabItem("Brakes"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_gearing() void tab_current_profile::tab_gearing()
{ {
if (ImGui::BeginTabItem("Gearing")) if (ImGui::BeginTabItem("Gearing"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_general() void tab_current_profile::tab_general()
{ {
if (ImGui::BeginTabItem("General")) if (ImGui::BeginTabItem("General"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_other() void tab_current_profile::tab_other()
{ {
if (ImGui::BeginTabItem("Other")) if (ImGui::BeginTabItem("Other"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_roll_centre_height() void tab_current_profile::tab_roll_centre_height()
{ {
if (ImGui::BeginTabItem("Roll Centre Height")) if (ImGui::BeginTabItem("Roll Centre Height"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_rollbars() void tab_current_profile::tab_rollbars()
{ {
if (ImGui::BeginTabItem("Rollbars")) if (ImGui::BeginTabItem("Rollbars"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_steering() void tab_current_profile::tab_steering()
{ {
if (ImGui::BeginTabItem("Steering")) if (ImGui::BeginTabItem("Steering"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_suspension() void tab_current_profile::tab_suspension()
{ {
if (ImGui::BeginTabItem("Suspension")) if (ImGui::BeginTabItem("Suspension"))
{ {

View File

@ -4,7 +4,7 @@
namespace big namespace big
{ {
class tab_handling class tab_current_profile
{ {
public: public:
static void tab_brakes(); static void tab_brakes();

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_traction() void tab_current_profile::tab_traction()
{ {
if (ImGui::BeginTabItem("Traction")) if (ImGui::BeginTabItem("Traction"))
{ {

View File

@ -2,7 +2,7 @@
namespace big namespace big
{ {
void tab_handling::tab_transmission() void tab_current_profile::tab_transmission()
{ {
if (ImGui::BeginTabItem("Transmission")) if (ImGui::BeginTabItem("Transmission"))
{ {