From e89bd462c94831bb0672a9e045ec23ff78142ac1 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Thu, 30 Mar 2023 17:11:28 -0400 Subject: [PATCH] Fix deprecated-copy when compiling with qt-creator --- oscar/SleepLib/calcs.h | 2 ++ oscar/SleepLib/deviceconnection.h | 1 + oscar/SleepLib/journal.h | 1 + oscar/SleepLib/loader_plugins/weinmann_loader.h | 1 + oscar/statistics.cpp | 2 ++ oscar/statistics.h | 2 ++ 6 files changed, 9 insertions(+) diff --git a/oscar/SleepLib/calcs.h b/oscar/SleepLib/calcs.h index 6c225c06..250aaf81 100644 --- a/oscar/SleepLib/calcs.h +++ b/oscar/SleepLib/calcs.h @@ -40,6 +40,8 @@ struct Filter { param2 = copy.param2; param3 = copy.param3; } + Filter& operator=(const Filter ©) = default; + ~Filter() {}; FilterType type; EventDataType param1; diff --git a/oscar/SleepLib/deviceconnection.h b/oscar/SleepLib/deviceconnection.h index 35f9ef95..6bd230d4 100644 --- a/oscar/SleepLib/deviceconnection.h +++ b/oscar/SleepLib/deviceconnection.h @@ -291,6 +291,7 @@ public: friend class QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const SerialPortInfo & info); friend class QXmlStreamReader & operator>>(QXmlStreamReader & xml, SerialPortInfo & info); bool operator==(const SerialPortInfo & other) const; + SerialPortInfo& operator=(const SerialPortInfo & other) = default; protected: SerialPortInfo(const class QSerialPortInfo & other); diff --git a/oscar/SleepLib/journal.h b/oscar/SleepLib/journal.h index 4da7ea2b..e85fffd3 100644 --- a/oscar/SleepLib/journal.h +++ b/oscar/SleepLib/journal.h @@ -25,6 +25,7 @@ public: end = copy.end; notes = copy.notes; } + Bookmark& operator=(const Bookmark & other) = default; Bookmark(qint64 start, qint64 end, QString notes): start(start), end(end), notes(notes) {} diff --git a/oscar/SleepLib/loader_plugins/weinmann_loader.h b/oscar/SleepLib/loader_plugins/weinmann_loader.h index 94be6201..a1f9c332 100644 --- a/oscar/SleepLib/loader_plugins/weinmann_loader.h +++ b/oscar/SleepLib/loader_plugins/weinmann_loader.h @@ -66,6 +66,7 @@ struct CompInfo pres_start(ps), pres_size(pl), amv_start(ms), amv_size(ml), event_start(es), event_recs(er) {} + CompInfo& operator=(const CompInfo & other) = default; Session * session; QDateTime time; quint32 flow_start; diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 4c30ace9..d561c97f 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -879,6 +879,8 @@ struct Period { end=copy.end; header=copy.header; } + Period& operator=(const Period&) = default; + ~Period() {}; QDate start; QDate end; QString header; diff --git a/oscar/statistics.h b/oscar/statistics.h index 2b978860..3a977ded 100644 --- a/oscar/statistics.h +++ b/oscar/statistics.h @@ -44,6 +44,8 @@ struct StatisticsRow { calc=copy.calc; type=copy.type; } + StatisticsRow& operator=(const StatisticsRow&) = default; + ~StatisticsRow() {}; QString src; StatCalcType calc; MachineType type;