diff options
author | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-30 20:00:52 -0400 |
---|---|---|
committer | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-30 20:00:52 -0400 |
commit | afb3782aa3e7b40937c5dff03b22f6d4de869dc9 (patch) | |
tree | bcbe09e34fc72b691ba4567ae2b8d681452ea008 /src/module.cpp | |
parent | ef651b667eebacda409b4db51c0e38e27ef6e4e3 (diff) |
Some more slight cleanups, this time in modes.cpp and module.cpp.
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; } |