mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
b3a4c7052a
commit
d060a3a3cb
12 changed files with 13 additions and 13 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef HISTOGRAM_MARKER_H
|
||||
#define HISTOGRAM_MARKER_H
|
||||
|
||||
#include "chartitem.h"
|
||||
#include "statsitem.h"
|
||||
|
||||
class StatsAxis;
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#ifndef INFORMATION_BOX_H
|
||||
#define INFORMATION_BOX_H
|
||||
|
||||
#include "chartitem.h"
|
||||
#include "statsitem.h"
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef QUARTILE_MARKER_H
|
||||
#define QUARTILE_MARKER_H
|
||||
|
||||
#include "chartitem.h"
|
||||
#include "statsitem.h"
|
||||
|
||||
class StatsAxis;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef REGRESSION_H
|
||||
#define REGRESSION_H
|
||||
|
||||
#include "chartitem.h"
|
||||
#include "statsitem.h"
|
||||
|
||||
class StatsAxis;
|
||||
class StatsTheme;
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef STATS_AXIS_H
|
||||
#define STATS_AXIS_H
|
||||
|
||||
#include "chartitem.h"
|
||||
#include "statsitem.h"
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue