diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-17 20:33:28 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-17 20:33:28 +0100 |
commit | 366e0b120624cb382fd3b233b8ec7a75c31a2da4 (patch) | |
tree | 8cd1d65a19e490c2ce74bc2c2ef6ebe358b4d1c1 /src/gui/npcintegerdialog.cpp | |
parent | e02c372c50b3d8b498661a05183f460ae6ae395f (diff) | |
download | mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.gz mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.bz2 mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.xz mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.zip |
Got rid of const where it does not make much sense
It's not that useful to make variables that are passed by value const.
In the declaration it is even completely ignored.
Diffstat (limited to 'src/gui/npcintegerdialog.cpp')
-rw-r--r-- | src/gui/npcintegerdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 6b26349a..463f46ae 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -63,7 +63,7 @@ NpcIntegerDialog::NpcIntegerDialog(): setLocationRelativeTo(getParent()); } -void NpcIntegerDialog::setRange(const int min, const int max) +void NpcIntegerDialog::setRange(int min, int max) { mValueField->setRange(min, max); } @@ -109,7 +109,7 @@ void NpcIntegerDialog::action(const gcn::ActionEvent &event) } } -void NpcIntegerDialog::setDefaultValue(const int value) +void NpcIntegerDialog::setDefaultValue(int value) { mValueField->setDefaultValue(value); } |