diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/npcdialog.cpp | 9 | ||||
-rw-r--r-- | src/gui/npcdialog.h | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp index 116935afd..567fcda06 100644 --- a/src/gui/npcdialog.cpp +++ b/src/gui/npcdialog.cpp @@ -334,9 +334,7 @@ void NpcDialog::action(const gcn::ActionEvent &event) } else if (event.getId() == "clear") { - mTextBox->clearRows(); -// mTextBox->addRow(mNewText); -// setText(mNewText); + clearRows(); } else if (event.getId() == "close") { @@ -760,3 +758,8 @@ void NpcDialog::logic() } } } + +void NpcDialog::clearRows() +{ + mTextBox->clearRows(); +} diff --git a/src/gui/npcdialog.h b/src/gui/npcdialog.h index e3cc274c8..cd5f7fe57 100644 --- a/src/gui/npcdialog.h +++ b/src/gui/npcdialog.h @@ -200,6 +200,8 @@ class NpcDialog : public Window, public gcn::ActionListener, void logic(); + void clearRows(); + private: typedef std::list<NpcDialog*> DialogList; static DialogList instances; |