summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-02-03 19:33:06 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-04 02:16:46 +0100
commit9ed886e4bea6c88a427a8fce50e2cb226d24afcc (patch)
tree902baf216598e4002204a8fa033e109909d0ab2f /core
parent3ad1a5c7c77f7aa9e703e1f977c739a0ea1e5a54 (diff)
downloadsubsurface-9ed886e4bea6c88a427a8fce50e2cb226d24afcc.tar.gz
Cleanup: lower-case filenames in core/subsurface-qt/
We tend to use lower-case filenames. Let's do it for these files as well. Simple search & replace. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r--core/CMakeLists.txt12
-rw-r--r--core/selection.cpp2
-rw-r--r--core/subsurface-qt/cylinderobjecthelper.cpp (renamed from core/subsurface-qt/CylinderObjectHelper.cpp)2
-rw-r--r--core/subsurface-qt/cylinderobjecthelper.h (renamed from core/subsurface-qt/CylinderObjectHelper.h)0
-rw-r--r--core/subsurface-qt/divelistnotifier.cpp (renamed from core/subsurface-qt/DiveListNotifier.cpp)2
-rw-r--r--core/subsurface-qt/divelistnotifier.h (renamed from core/subsurface-qt/DiveListNotifier.h)0
-rw-r--r--core/subsurface-qt/diveobjecthelper.cpp (renamed from core/subsurface-qt/DiveObjectHelper.cpp)2
-rw-r--r--core/subsurface-qt/diveobjecthelper.h (renamed from core/subsurface-qt/DiveObjectHelper.h)2
8 files changed, 11 insertions, 11 deletions
diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt
index 80fbd326e..24df1854b 100644
--- a/core/CMakeLists.txt
+++ b/core/CMakeLists.txt
@@ -220,12 +220,12 @@ set(SUBSURFACE_CORE_LIB_SRCS
settings/qPrefUpdateManager.h
#Subsurface Qt have the Subsurface structs QObjectified for easy access via QML.
- subsurface-qt/CylinderObjectHelper.cpp
- subsurface-qt/CylinderObjectHelper.h
- subsurface-qt/DiveListNotifier.cpp
- subsurface-qt/DiveListNotifier.h
- subsurface-qt/DiveObjectHelper.cpp
- subsurface-qt/DiveObjectHelper.h
+ subsurface-qt/cylinderobjecthelper.cpp
+ subsurface-qt/cylinderobjecthelper.h
+ subsurface-qt/divelistnotifier.cpp
+ subsurface-qt/divelistnotifier.h
+ subsurface-qt/diveobjecthelper.cpp
+ subsurface-qt/diveobjecthelper.h
${SERIAL_FTDI}
${PLATFORM_SRC}
diff --git a/core/selection.cpp b/core/selection.cpp
index 7bddd86ee..4890f6422 100644
--- a/core/selection.cpp
+++ b/core/selection.cpp
@@ -4,7 +4,7 @@
#include "selection.h"
#include "divelist.h"
#include "display.h" // for amount_selected
-#include "subsurface-qt/DiveListNotifier.h"
+#include "subsurface-qt/divelistnotifier.h"
#include <QVector>
diff --git a/core/subsurface-qt/CylinderObjectHelper.cpp b/core/subsurface-qt/cylinderobjecthelper.cpp
index 28c14e10a..897746952 100644
--- a/core/subsurface-qt/CylinderObjectHelper.cpp
+++ b/core/subsurface-qt/cylinderobjecthelper.cpp
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
-#include "CylinderObjectHelper.h"
+#include "cylinderobjecthelper.h"
#include "../qthelper.h"
static QString EMPTY_CYLINDER_STRING = QStringLiteral("");
diff --git a/core/subsurface-qt/CylinderObjectHelper.h b/core/subsurface-qt/cylinderobjecthelper.h
index e1e2490e4..e1e2490e4 100644
--- a/core/subsurface-qt/CylinderObjectHelper.h
+++ b/core/subsurface-qt/cylinderobjecthelper.h
diff --git a/core/subsurface-qt/DiveListNotifier.cpp b/core/subsurface-qt/divelistnotifier.cpp
index 2009defcd..8753c79a4 100644
--- a/core/subsurface-qt/DiveListNotifier.cpp
+++ b/core/subsurface-qt/divelistnotifier.cpp
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
-#include "DiveListNotifier.h"
+#include "divelistnotifier.h"
DiveListNotifier diveListNotifier;
diff --git a/core/subsurface-qt/DiveListNotifier.h b/core/subsurface-qt/divelistnotifier.h
index fc7115a99..fc7115a99 100644
--- a/core/subsurface-qt/DiveListNotifier.h
+++ b/core/subsurface-qt/divelistnotifier.h
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/diveobjecthelper.cpp
index 606614b05..aec5984a8 100644
--- a/core/subsurface-qt/DiveObjectHelper.cpp
+++ b/core/subsurface-qt/diveobjecthelper.cpp
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
-#include "DiveObjectHelper.h"
+#include "diveobjecthelper.h"
#include <QDateTime>
#include <QTextDocument>
diff --git a/core/subsurface-qt/DiveObjectHelper.h b/core/subsurface-qt/diveobjecthelper.h
index 639dae696..7723df0f4 100644
--- a/core/subsurface-qt/DiveObjectHelper.h
+++ b/core/subsurface-qt/diveobjecthelper.h
@@ -2,7 +2,7 @@
#ifndef DIVE_QOBJECT_H
#define DIVE_QOBJECT_H
-#include "CylinderObjectHelper.h"
+#include "cylinderobjecthelper.h"
#include <QObject>
#include <QString>
#include <QStringList>