summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/templatelayout.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-04-26 18:16:02 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-04-29 13:03:31 -0700
commitef769055900fbb391de7e2dbb89f8ffb23c237b0 (patch)
treef904e6cf8cdf5ea3c3011dc743989628178a4f90 /desktop-widgets/templatelayout.h
parent8165abf2e7267e624e6e4754dbe6c3af3dbe17a7 (diff)
downloadsubsurface-ef769055900fbb391de7e2dbb89f8ffb23c237b0.tar.gz
Cleanup: simplify YearInfo class
YearInfo is a trivial wrapper around "stats_t *". All the constructor / destructor rigmarole seems completely unnecessary. Remove it. Probably the whole class could be removed, but for that I'd need more insight into Grantlee, which is low on my list of priorities for now. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/templatelayout.h')
-rw-r--r--desktop-widgets/templatelayout.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/desktop-widgets/templatelayout.h b/desktop-widgets/templatelayout.h
index 5fab95f44..49aa51613 100644
--- a/desktop-widgets/templatelayout.h
+++ b/desktop-widgets/templatelayout.h
@@ -34,16 +34,8 @@ signals:
void progressUpdated(int value);
};
-class YearInfo {
-public:
+struct YearInfo {
stats_t *year;
- YearInfo(stats_t& year)
- :year(&year)
- {
-
- }
- YearInfo();
- ~YearInfo();
};
Q_DECLARE_METATYPE(template_options)