mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 13:17:41 +02:00
Add copy constructor for version class.
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
Version Version::current = Version(VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD);
|
||||
Version Version::current(VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD);
|
||||
|
||||
Version::Version(int major, int minor, int revision, int build, QObject *parent) :
|
||||
QObject(parent)
|
||||
@ -28,6 +28,14 @@ Version::Version(int major, int minor, int revision, int build, QObject *parent)
|
||||
this->build = build;
|
||||
}
|
||||
|
||||
Version::Version(const Version& ver)
|
||||
{
|
||||
this->major = ver.major;
|
||||
this->minor = ver.minor;
|
||||
this->revision = ver.revision;
|
||||
this->build = ver.build;
|
||||
}
|
||||
|
||||
QString Version::toString() const
|
||||
{
|
||||
return QString("%1.%2.%3.%4").arg(
|
||||
|
Reference in New Issue
Block a user