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/statsview.cpp \
|
||||||
stats/barseries.cpp \
|
stats/barseries.cpp \
|
||||||
stats/boxseries.cpp \
|
stats/boxseries.cpp \
|
||||||
stats/chartitem.cpp \
|
stats/statsitem.cpp \
|
||||||
stats/chartlistmodel.cpp \
|
stats/chartlistmodel.cpp \
|
||||||
stats/histogrammarker.cpp \
|
stats/histogrammarker.cpp \
|
||||||
stats/informationbox.cpp \
|
stats/informationbox.cpp \
|
||||||
|
|
@ -300,7 +300,7 @@ HEADERS += \
|
||||||
qt-quick/chartview.h \
|
qt-quick/chartview.h \
|
||||||
stats/barseries.h \
|
stats/barseries.h \
|
||||||
stats/boxseries.h \
|
stats/boxseries.h \
|
||||||
stats/chartitem.h \
|
stats/statsitem.h \
|
||||||
stats/chartlistmodel.h \
|
stats/chartlistmodel.h \
|
||||||
stats/histogrammarker.h \
|
stats/histogrammarker.h \
|
||||||
stats/informationbox.h \
|
stats/informationbox.h \
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@ set(SUBSURFACE_STATS_SRCS
|
||||||
barseries.cpp
|
barseries.cpp
|
||||||
boxseries.h
|
boxseries.h
|
||||||
boxseries.cpp
|
boxseries.cpp
|
||||||
chartitem.h
|
statsitem.h
|
||||||
chartitem.cpp
|
statsitem.cpp
|
||||||
chartlistmodel.h
|
chartlistmodel.h
|
||||||
chartlistmodel.cpp
|
chartlistmodel.cpp
|
||||||
histogrammarker.h
|
histogrammarker.h
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
#ifndef BOX_SERIES_H
|
#ifndef BOX_SERIES_H
|
||||||
#define BOX_SERIES_H
|
#define BOX_SERIES_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
#include "statsseries.h"
|
#include "statsseries.h"
|
||||||
#include "statsvariables.h" // for StatsQuartiles
|
#include "statsvariables.h" // for StatsQuartiles
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#ifndef HISTOGRAM_MARKER_H
|
#ifndef HISTOGRAM_MARKER_H
|
||||||
#define HISTOGRAM_MARKER_H
|
#define HISTOGRAM_MARKER_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
|
|
||||||
class StatsAxis;
|
class StatsAxis;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
#ifndef INFORMATION_BOX_H
|
#ifndef INFORMATION_BOX_H
|
||||||
#define INFORMATION_BOX_H
|
#define INFORMATION_BOX_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#ifndef QUARTILE_MARKER_H
|
#ifndef QUARTILE_MARKER_H
|
||||||
#define QUARTILE_MARKER_H
|
#define QUARTILE_MARKER_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
|
|
||||||
class StatsAxis;
|
class StatsAxis;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#ifndef REGRESSION_H
|
#ifndef REGRESSION_H
|
||||||
#define REGRESSION_H
|
#define REGRESSION_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
|
|
||||||
class StatsAxis;
|
class StatsAxis;
|
||||||
class StatsTheme;
|
class StatsTheme;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "scatterseries.h"
|
#include "scatterseries.h"
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
#include "informationbox.h"
|
#include "informationbox.h"
|
||||||
#include "statscolors.h"
|
#include "statscolors.h"
|
||||||
#include "statstranslations.h"
|
#include "statstranslations.h"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
#ifndef STATS_AXIS_H
|
#ifndef STATS_AXIS_H
|
||||||
#define STATS_AXIS_H
|
#define STATS_AXIS_H
|
||||||
|
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "statsgrid.h"
|
#include "statsgrid.h"
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
#include "statsaxis.h"
|
#include "statsaxis.h"
|
||||||
#include "statscolors.h"
|
#include "statscolors.h"
|
||||||
#include "statsview.h"
|
#include "statsview.h"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "chartitem.h"
|
#include "statsitem.h"
|
||||||
#include "statscolors.h"
|
#include "statscolors.h"
|
||||||
#include "statsview.h"
|
#include "statsview.h"
|
||||||
#include "core/globals.h"
|
#include "core/globals.h"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue