mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Another fix for deprecated-copy
This commit is contained in:
parent
a08798cda2
commit
998eab6180
@ -43,14 +43,7 @@ class Update
|
|||||||
*/
|
*/
|
||||||
struct Release {
|
struct Release {
|
||||||
Release() {}
|
Release() {}
|
||||||
Release(const Release ©) {
|
Release(const Release ©) = default;
|
||||||
version = copy.version;
|
|
||||||
codename = copy.version;
|
|
||||||
notes = copy.notes;
|
|
||||||
info_url = copy.info_url;
|
|
||||||
status = copy.status;
|
|
||||||
updates = copy.updates;
|
|
||||||
}
|
|
||||||
|
|
||||||
Release(QString ver, QString code, UpdateStatus stat) { version = ver; codename = code; status = stat; }
|
Release(QString ver, QString code, UpdateStatus stat) { version = ver; codename = code; status = stat; }
|
||||||
QString version;
|
QString version;
|
||||||
@ -94,26 +87,7 @@ class UpdateParser: public QXmlDefaultHandler
|
|||||||
class PackageUpdate {
|
class PackageUpdate {
|
||||||
public:
|
public:
|
||||||
PackageUpdate() {}
|
PackageUpdate() {}
|
||||||
PackageUpdate(const PackageUpdate & copy) {
|
PackageUpdate(const PackageUpdate & copy) = default;
|
||||||
// Seriously, why do I still have to do this crud by hand
|
|
||||||
// Where is the shortcut to save time here in the latest C++ extensions?
|
|
||||||
name = copy.name;
|
|
||||||
displayName = copy.displayName;
|
|
||||||
description = copy.description;
|
|
||||||
versionString = copy.versionString;
|
|
||||||
releaseDate = copy.releaseDate;
|
|
||||||
defaultInstall = copy.defaultInstall;
|
|
||||||
installScript = copy.installScript;
|
|
||||||
dependencies = copy.dependencies;
|
|
||||||
script = copy.script;
|
|
||||||
forcedInstall = copy.forcedInstall;
|
|
||||||
downloadArchives = copy.downloadArchives;
|
|
||||||
license = copy.license;
|
|
||||||
sha1 = copy.sha1;
|
|
||||||
compressedSize = copy.compressedSize;
|
|
||||||
uncompressedSize = copy.uncompressedSize;
|
|
||||||
os = copy.os;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
QString displayName;
|
QString displayName;
|
||||||
|
Loading…
Reference in New Issue
Block a user