diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2020-05-22 21:14:37 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2020-05-22 21:14:37 -0500 |
| commit | 75453510e080978681ec5603e283c36638f155cc (patch) | |
| tree | 281130e519245a116b0066593e1f129c6f55ce41 /include | |
| parent | 392cefbee43c667ca21244f08f5d97814f282327 (diff) | |
Fix compile errors from merge
Diffstat (limited to 'include')
| -rw-r--r-- | include/aoapplication.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/aoapplication.h b/include/aoapplication.h index fa1757b9..18f6ef24 100644 --- a/include/aoapplication.h +++ b/include/aoapplication.h @@ -100,9 +100,9 @@ public: //////////////////versioning/////////////// - const int get_release() const { return RELEASE; } - const int get_major_version() const { return MAJOR_VERSION; } - const int get_minor_version() const { return MINOR_VERSION; } + int get_release() const { return RELEASE; } + int get_major_version() const { return MAJOR_VERSION; } + int get_minor_version() const { return MINOR_VERSION; } QString get_version_string(); /////////////////////////////////////////// |
