profile: rename stats/chartitem.* to stats/statsitem.*

Android uses qmake and apparently that doesn't support source files
with the same name. We already have chart/chartitem.*.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-09-12 11:17:45 +02:00
parent b3a4c7052a
commit d060a3a3cb
12 changed files with 13 additions and 13 deletions

View file

@ -138,7 +138,7 @@ SOURCES += subsurface-mobile-main.cpp \
stats/statsview.cpp \
stats/barseries.cpp \
stats/boxseries.cpp \
stats/chartitem.cpp \
stats/statsitem.cpp \
stats/chartlistmodel.cpp \
stats/histogrammarker.cpp \
stats/informationbox.cpp \
@ -300,7 +300,7 @@ HEADERS += \
qt-quick/chartview.h \
stats/barseries.h \
stats/boxseries.h \
stats/chartitem.h \
stats/statsitem.h \
stats/chartlistmodel.h \
stats/histogrammarker.h \
stats/informationbox.h \

View file

@ -9,8 +9,8 @@ set(SUBSURFACE_STATS_SRCS
barseries.cpp
boxseries.h
boxseries.cpp
chartitem.h
chartitem.cpp
statsitem.h
statsitem.cpp
chartlistmodel.h
chartlistmodel.cpp
histogrammarker.h

View file

@ -5,7 +5,7 @@
#ifndef BOX_SERIES_H
#define BOX_SERIES_H
#include "chartitem.h"
#include "statsitem.h"
#include "statsseries.h"
#include "statsvariables.h" // for StatsQuartiles

View file

@ -2,7 +2,7 @@
#ifndef HISTOGRAM_MARKER_H
#define HISTOGRAM_MARKER_H
#include "chartitem.h"
#include "statsitem.h"
class StatsAxis;

View file

@ -4,7 +4,7 @@
#ifndef INFORMATION_BOX_H
#define INFORMATION_BOX_H
#include "chartitem.h"
#include "statsitem.h"
#include <vector>
#include <memory>

View file

@ -2,7 +2,7 @@
#ifndef QUARTILE_MARKER_H
#define QUARTILE_MARKER_H
#include "chartitem.h"
#include "statsitem.h"
class StatsAxis;

View file

@ -2,7 +2,7 @@
#ifndef REGRESSION_H
#define REGRESSION_H
#include "chartitem.h"
#include "statsitem.h"
class StatsAxis;
class StatsTheme;

View file

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#include "scatterseries.h"
#include "chartitem.h"
#include "statsitem.h"
#include "informationbox.h"
#include "statscolors.h"
#include "statstranslations.h"

View file

@ -2,7 +2,7 @@
#ifndef STATS_AXIS_H
#define STATS_AXIS_H
#include "chartitem.h"
#include "statsitem.h"
#include <memory>
#include <vector>

View file

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#include "statsgrid.h"
#include "chartitem.h"
#include "statsitem.h"
#include "statsaxis.h"
#include "statscolors.h"
#include "statsview.h"

View file

@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-2.0
#include "chartitem.h"
#include "statsitem.h"
#include "statscolors.h"
#include "statsview.h"
#include "core/globals.h"