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:50:44 +0100 |
commit | 44162ed05648e68bd07dfcb35e86b6a18b3d3372 (patch) | |
tree | 9ac202167a6b008f50e4d1f4d73c879522f3581c /qfunctionconfigurator | |
parent | 9f0ba65825054b182d9a9c2b53dad955a90d4df1 (diff) |
one const too many
Diffstat (limited to 'qfunctionconfigurator')
-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 ab2d0d0c..4d771dfd 100644 --- a/qfunctionconfigurator/functionconfig.h +++ b/qfunctionconfigurator/functionconfig.h @@ -32,8 +32,8 @@ private: int _max_Output; FunctionConfig(const FunctionConfig&) = delete; 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 // |