Fix deprecated-copy when compiling with qt-creator

This commit is contained in:
LoudSnorer 2023-03-30 17:11:28 -04:00
parent 4d6893f4cc
commit e89bd462c9
6 changed files with 9 additions and 0 deletions

View File

@ -40,6 +40,8 @@ struct Filter {
param2 = copy.param2;
param3 = copy.param3;
}
Filter& operator=(const Filter &copy) = default;
~Filter() {};
FilterType type;
EventDataType param1;

View File

@ -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);

View File

@ -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) {}

View File

@ -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;

View File

@ -879,6 +879,8 @@ struct Period {
end=copy.end;
header=copy.header;
}
Period& operator=(const Period&) = default;
~Period() {};
QDate start;
QDate end;
QString header;

View File

@ -44,6 +44,8 @@ struct StatisticsRow {
calc=copy.calc;
type=copy.type;
}
StatisticsRow& operator=(const StatisticsRow&) = default;
~StatisticsRow() {};
QString src;
StatCalcType calc;
MachineType type;