From f5f38f54e9edf21b68804979d4798ffa05560113 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Wed, 28 Oct 2020 09:28:26 +0000 Subject: [PATCH] Project Style prefers CamelCase .. we tend to avoid using underscores (_) in preference for camel case. Especially for filenames. --- src/Train/{Kurt_inRide.cpp => KurtInRide.cpp} | 2 +- src/Train/{Kurt_inRide.h => KurtInRide.h} | 0 src/Train/{Kurt_SmartControl.cpp => KurtSmartControl.cpp} | 2 +- src/Train/{Kurt_SmartControl.h => KurtSmartControl.h} | 0 src/src.pro | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/Train/{Kurt_inRide.cpp => KurtInRide.cpp} (99%) rename src/Train/{Kurt_inRide.h => KurtInRide.h} (100%) rename src/Train/{Kurt_SmartControl.cpp => KurtSmartControl.cpp} (99%) rename src/Train/{Kurt_SmartControl.h => KurtSmartControl.h} (100%) diff --git a/src/Train/Kurt_inRide.cpp b/src/Train/KurtInRide.cpp similarity index 99% rename from src/Train/Kurt_inRide.cpp rename to src/Train/KurtInRide.cpp index 5698e52c5..4ff74e5f2 100644 --- a/src/Train/Kurt_inRide.cpp +++ b/src/Train/KurtInRide.cpp @@ -5,7 +5,7 @@ // // Integrated into golden cheetah by Eric Christoffersen 2020 (impolexg@outlook.com) -#include "Kurt_inRide.h" +#include "KurtInRide.h" #include #include diff --git a/src/Train/Kurt_inRide.h b/src/Train/KurtInRide.h similarity index 100% rename from src/Train/Kurt_inRide.h rename to src/Train/KurtInRide.h diff --git a/src/Train/Kurt_SmartControl.cpp b/src/Train/KurtSmartControl.cpp similarity index 99% rename from src/Train/Kurt_SmartControl.cpp rename to src/Train/KurtSmartControl.cpp index 58b1fd4d9..85eef7dcc 100644 --- a/src/Train/Kurt_SmartControl.cpp +++ b/src/Train/KurtSmartControl.cpp @@ -5,7 +5,7 @@ // // Integrated into golden cheetah by Eric Christoffersen 2020 (impolexg@outlook.com) -#include "Kurt_SmartControl.h" +#include "KurtSmartControl.h" #include #include diff --git a/src/Train/Kurt_SmartControl.h b/src/Train/KurtSmartControl.h similarity index 100% rename from src/Train/Kurt_SmartControl.h rename to src/Train/KurtSmartControl.h diff --git a/src/src.pro b/src/src.pro index b12f5f166..c89427f7d 100644 --- a/src/src.pro +++ b/src/src.pro @@ -623,8 +623,8 @@ greaterThan(QT_MAJOR_VERSION, 4) { HEADERS += Train/Ergofit.h Train/ErgofitController.h Train/ErgofitConnection.h SOURCES += Train/DaumController.cpp Train/Daum.cpp HEADERS += Train/DaumController.h Train/Daum.h - SOURCES += Train/Kurt_inRide.cpp Train/Kurt_SmartControl.cpp - HEADERS += Train/Kurt_inRide.h Train/Kurt_SmartControl.h + SOURCES += Train/KurtInRide.cpp Train/KurtSmartControl.cpp + HEADERS += Train/KurtInRide.h Train/KurtSmartControl.h # bluetooth in QT5.5 or higher(5.4 was only a tech preview) greaterThan(QT_MINOR_VERSION, 4) {