diff --git a/app/src/MainWindow.cpp b/app/src/MainWindow.cpp index b38845e..80c94f6 100644 --- a/app/src/MainWindow.cpp +++ b/app/src/MainWindow.cpp @@ -36,7 +36,6 @@ #include #include -#include #include #include #include diff --git a/core/include/Data/IDataSeries.h b/core/include/Data/IDataSeries.h index 5dfa75a..2710e1b 100644 --- a/core/include/Data/IDataSeries.h +++ b/core/include/Data/IDataSeries.h @@ -23,7 +23,7 @@ struct Unit { inline bool operator!=(const Unit &other) const { return !(*this == other); } QString m_Name; ///< Unit name - bool m_TimeUnit; ///< The unit is a unit of time + bool m_TimeUnit; ///< The unit is a unit of time (UTC) }; /** diff --git a/core/include/Data/SqpDateTime.h b/core/include/Data/SqpDateTime.h index 450e9eb..b4c51c5 100644 --- a/core/include/Data/SqpDateTime.h +++ b/core/include/Data/SqpDateTime.h @@ -12,9 +12,9 @@ * @brief The SqpDateTime struct holds the information of time parameters */ struct SqpDateTime { - /// Start time + /// Start time (UTC) double m_TStart; - /// End time + /// End time (UTC) double m_TEnd; bool contains(const SqpDateTime &dateTime) const noexcept diff --git a/core/src/Variable/VariableController.cpp b/core/src/Variable/VariableController.cpp index c439435..e69b4de 100644 --- a/core/src/Variable/VariableController.cpp +++ b/core/src/Variable/VariableController.cpp @@ -8,7 +8,6 @@ #include #include