diff options
Diffstat (limited to 'src/module.cpp')
-rw-r--r-- | src/module.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/module.cpp b/src/module.cpp index 99233d7a3..d426eb2aa 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -130,7 +130,7 @@ void Module::SetPermanent(bool state) this->permanent = state; } -bool Module::GetPermanent() +bool Module::GetPermanent() const { return this->permanent; } @@ -153,17 +153,17 @@ Version::~Version() { } -const unsigned Version::GetMajor() +unsigned Version::GetMajor() const { return Major; } -const unsigned Version::GetMinor() +unsigned Version::GetMinor() const { return Minor; } -const unsigned Version::GetBuild() +unsigned Version::GetBuild() const { return Build; } |