diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-01-01 13:50:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-01-01 13:53:42 +0100 |
commit | f00e6945cf0634e1b8f01d1f9208fb792902b3b1 (patch) | |
tree | 336e85f777a936dfeee71cb495e2adb1b0eb23aa | |
parent | 6bacee0e3aa8239b80fdea24093c1de5d10434e9 (diff) |
one const too many
-rw-r--r-- | qfunctionconfigurator/functionconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qfunctionconfigurator/functionconfig.h b/qfunctionconfigurator/functionconfig.h index 6b154e33..9654fffb 100644 --- a/qfunctionconfigurator/functionconfig.h +++ b/qfunctionconfigurator/functionconfig.h @@ -32,8 +32,8 @@ private: int _max_Output; FunctionConfig(const FunctionConfig&) {} public: - const int maxInput() const { return _max_Input; } - const int maxOutput() const { return _max_Output; } + int maxInput() const { return _max_Input; } + int maxOutput() const { return _max_Output; } // // Contructor(s) and destructor // |