Add copy constructor for version class.
This commit is contained in:
parent
2d05e90196
commit
ffe49e9c1a
2 changed files with 11 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue