summaryrefslogtreecommitdiffstats
path: root/mappingdata.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2022-04-15 13:27:34 +0200
committerArno <arno@disconnect.de>2022-04-15 13:27:34 +0200
commit856119c5a43b4781b051b93a0713c152cfd99f85 (patch)
tree4e2fde4e7a76179cc243e0665091c6ad429ea640 /mappingdata.cpp
parent62d3ca1482b202d2883eeb5e17e72300e8612477 (diff)
downloadSheMov-856119c5a43b4781b051b93a0713c152cfd99f85.tar.gz
SheMov-856119c5a43b4781b051b93a0713c152cfd99f85.tar.bz2
SheMov-856119c5a43b4781b051b93a0713c152cfd99f85.zip
Make it run with Qt6
This is a huge commit. Changes: * Obviously, make it compile * Make it run (only scarcely tested) * get rid of most of clang's warnings Let's see what surprises are in store...
Diffstat (limited to 'mappingdata.cpp')
-rw-r--r--mappingdata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mappingdata.cpp b/mappingdata.cpp
index d2e061a..3253b2d 100644
--- a/mappingdata.cpp
+++ b/mappingdata.cpp
@@ -11,7 +11,7 @@
MappingData::MappingData() : mappingId(-1), descId(-1) {}
-bool MappingData::operator ==(const MappingData &other){
+bool MappingData::operator ==(const MappingData &other) const{
bool retval = (
mappingId == other.mappingId &&
descId == other.descId &&