diff options
Diffstat (limited to 'src/module.cpp')
-rw-r--r-- | src/module.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/module.cpp b/src/module.cpp index d426eb2aa..97cf717de 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -155,15 +155,15 @@ Version::~Version() unsigned Version::GetMajor() const { - return Major; + return this->Major; } unsigned Version::GetMinor() const { - return Minor; + return this->Minor; } unsigned Version::GetBuild() const { - return Build; + return this->Build; } |