diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-01 20:49:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-02 00:37:51 +0300 |
commit | 4df121e6dcdf53436f50ce81dd60096ce0138a2c (patch) | |
tree | 7cadc707bb49e4c148ba9c182075697a9643e20a /src/gui/widgets/setupitem.cpp | |
parent | ed3410d7eb61593a2235ddba97ce257c85e405a6 (diff) | |
download | plus-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.gz plus-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.bz2 plus-4df121e6dcdf53436f50ce81dd60096ce0138a2c.tar.xz plus-4df121e6dcdf53436f50ce81dd60096ce0138a2c.zip |
Add const to more classes.
Diffstat (limited to 'src/gui/widgets/setupitem.cpp')
-rw-r--r-- | src/gui/widgets/setupitem.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/setupitem.cpp b/src/gui/widgets/setupitem.cpp index a835bf51a..f569fddb5 100644 --- a/src/gui/widgets/setupitem.cpp +++ b/src/gui/widgets/setupitem.cpp @@ -125,7 +125,7 @@ void SetupItem::load() } } -void SetupItem::save() +void SetupItem::save() const { Configuration *const cfg = getConfig(); cfg->setValue(mKeyName, mValue); @@ -629,7 +629,8 @@ SetupItemSlider::SetupItemSlider(std::string text, std::string description, } SetupItemSlider::SetupItemSlider(std::string text, std::string description, - std::string keyName, SetupTabScroll *parent, + std::string keyName, + SetupTabScroll *const parent, std::string eventName, const double min, const double max, std::string def, const int width, |