diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-16 18:52:54 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-16 18:52:54 +0000 |
commit | 26a52e8f74306b6e13e7a2029c19d8c7e1efd23a (patch) | |
tree | e239a4842ba2dd02cbd9a50e5a040783b40e9ca7 /src/gui/npcintegerdialog.cpp | |
parent | e1b66a9d88b43cee01ad15226c14fa6880fcbd04 (diff) | |
download | mana-client-26a52e8f74306b6e13e7a2029c19d8c7e1efd23a.tar.gz mana-client-26a52e8f74306b6e13e7a2029c19d8c7e1efd23a.tar.bz2 mana-client-26a52e8f74306b6e13e7a2029c19d8c7e1efd23a.tar.xz mana-client-26a52e8f74306b6e13e7a2029c19d8c7e1efd23a.zip |
Allow setting default values for NPC dialogs
Diffstat (limited to 'src/gui/npcintegerdialog.cpp')
-rw-r--r-- | src/gui/npcintegerdialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index b05e77ba..6b26349a 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -109,6 +109,11 @@ void NpcIntegerDialog::action(const gcn::ActionEvent &event) } } +void NpcIntegerDialog::setDefaultValue(const int value) +{ + mValueField->setDefaultValue(value); +} + bool NpcIntegerDialog::isInputFocused() { return mValueField->isFocused(); |