diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 21:55:32 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 21:55:32 +0100 |
commit | 08c9cde4726f94698ea938d464cd1de95b7be587 (patch) | |
tree | f75128313418756395683398342cf808387ed390 /src/gui/npcintegerdialog.cpp | |
parent | a6623430aa11b02f93761d27c25db9bb4157ec6f (diff) | |
download | mana-08c9cde4726f94698ea938d464cd1de95b7be587.tar.gz mana-08c9cde4726f94698ea938d464cd1de95b7be587.tar.bz2 mana-08c9cde4726f94698ea938d464cd1de95b7be587.tar.xz mana-08c9cde4726f94698ea938d464cd1de95b7be587.zip |
Fixes some variable names to conform to naming convention
Please do remember that member variables are prefixes with 'm', so that
they are easily distinguishable.
Diffstat (limited to 'src/gui/npcintegerdialog.cpp')
-rw-r--r-- | src/gui/npcintegerdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index c58fc460..540eca88 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -36,9 +36,9 @@ NpcIntegerDialog::NpcIntegerDialog(): mDecButton = new Button("-", "decvalue", this); mIncButton = new Button("+", "incvalue", this); - okButton = new Button(_("OK"), "ok", this); - cancelButton = new Button(_("Cancel"), "cancel", this); - resetButton = new Button(_("Reset"), "reset", this); + gcn::Button *okButton = new Button(_("OK"), "ok", this); + gcn::Button *cancelButton = new Button(_("Cancel"), "cancel", this); + gcn::Button *resetButton = new Button(_("Reset"), "reset", this); mDecButton->setSize(20, 20); mIncButton->setSize(20, 20); |